* [PATCH 0/4] drm/i915/cdclk: Workaround some kind of scaler 2PPC issue
@ 2026-07-15 12:09 Ville Syrjala
2026-07-15 12:09 ` [PATCH 1/4] drm/i915/cdclk: Use intel_cdclk_ppc() in intel_modeset_readout_hw_state() Ville Syrjala
` (7 more replies)
0 siblings, 8 replies; 14+ messages in thread
From: Ville Syrjala @ 2026-07-15 12:09 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Apparently ever since the hardware started to do 2 pixels per CDCLK
(GLK+) we need an extra bump in CDCLK for certain horizontal scale
factors. The current BSpec formula for that is insufficient so instead
go for an empirically derived formula for now.
Ville Syrjälä (4):
drm/i915/cdclk: Use intel_cdclk_ppc() in
intel_modeset_readout_hw_state()
drm/i915/cdclk: Introduce HAS_2PPC()
drm/i915/cdclk: Introduce crtc_state->pixel_rate_cdclk
drm/i915/cdclk: Deal with 2 PPC hscale issues when calculating min
CDCLK
drivers/gpu/drm/i915/display/hsw_ips.c | 2 +-
drivers/gpu/drm/i915/display/i9xx_plane.c | 4 +-
drivers/gpu/drm/i915/display/intel_cdclk.c | 6 +-
drivers/gpu/drm/i915/display/intel_cdclk.h | 1 +
drivers/gpu/drm/i915/display/intel_display.c | 32 ++++++++++-
.../drm/i915/display/intel_display_device.h | 1 +
.../drm/i915/display/intel_display_types.h | 7 +++
drivers/gpu/drm/i915/display/intel_fbc.c | 2 +-
.../drm/i915/display/intel_modeset_setup.c | 12 ++--
drivers/gpu/drm/i915/display/intel_plane.c | 55 +++++++++++++++++++
drivers/gpu/drm/i915/display/intel_plane.h | 5 ++
drivers/gpu/drm/i915/display/intel_sprite.c | 18 +++---
.../drm/i915/display/skl_universal_plane.c | 6 +-
13 files changed, 122 insertions(+), 29 deletions(-)
--
2.54.0
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH 1/4] drm/i915/cdclk: Use intel_cdclk_ppc() in intel_modeset_readout_hw_state()
2026-07-15 12:09 [PATCH 0/4] drm/i915/cdclk: Workaround some kind of scaler 2PPC issue Ville Syrjala
@ 2026-07-15 12:09 ` Ville Syrjala
2026-07-16 3:59 ` Garg, Nemesa
2026-07-15 12:09 ` [PATCH 2/4] drm/i915/cdclk: Introduce HAS_2PPC() Ville Syrjala
` (6 subsequent siblings)
7 siblings, 1 reply; 14+ messages in thread
From: Ville Syrjala @ 2026-07-15 12:09 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Replace the hand roller intel_cdclk_ppc() with the real thing
in intel_modeset_readout_hw_state().
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_cdclk.c | 2 +-
drivers/gpu/drm/i915/display/intel_cdclk.h | 1 +
drivers/gpu/drm/i915/display/intel_modeset_setup.c | 12 ++++--------
3 files changed, 6 insertions(+), 9 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.c b/drivers/gpu/drm/i915/display/intel_cdclk.c
index d3c5e3438d19..1d7ff2cbaebb 100644
--- a/drivers/gpu/drm/i915/display/intel_cdclk.c
+++ b/drivers/gpu/drm/i915/display/intel_cdclk.c
@@ -2908,7 +2908,7 @@ intel_set_cdclk_post_plane_update(struct intel_atomic_state *state)
}
/* pixels per CDCLK */
-static int intel_cdclk_ppc(struct intel_display *display, bool double_wide)
+int intel_cdclk_ppc(struct intel_display *display, bool double_wide)
{
return DISPLAY_VER(display) >= 10 || double_wide ? 2 : 1;
}
diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.h b/drivers/gpu/drm/i915/display/intel_cdclk.h
index 1ff7d078b42c..a60cbf745ee2 100644
--- a/drivers/gpu/drm/i915/display/intel_cdclk.h
+++ b/drivers/gpu/drm/i915/display/intel_cdclk.h
@@ -22,6 +22,7 @@ struct intel_cdclk_config {
bool joined_mbus;
};
+int intel_cdclk_ppc(struct intel_display *display, bool double_wide);
void intel_cdclk_init_hw(struct intel_display *display);
void intel_cdclk_uninit_hw(struct intel_display *display);
void intel_init_cdclk_hooks(struct intel_display *display);
diff --git a/drivers/gpu/drm/i915/display/intel_modeset_setup.c b/drivers/gpu/drm/i915/display/intel_modeset_setup.c
index e27a531e1aa2..14d829171c7d 100644
--- a/drivers/gpu/drm/i915/display/intel_modeset_setup.c
+++ b/drivers/gpu/drm/i915/display/intel_modeset_setup.c
@@ -854,14 +854,10 @@ static void intel_modeset_readout_hw_state(struct intel_display *display)
* FIXME don't have the fb yet, so can't
* use plane->min_cdclk() :(
*/
- if (plane_state->uapi.visible && plane->min_cdclk) {
- if (crtc_state->double_wide || DISPLAY_VER(display) >= 10)
- crtc_state->plane_min_cdclk[plane->id] =
- DIV_ROUND_UP(crtc_state->pixel_rate, 2);
- else
- crtc_state->plane_min_cdclk[plane->id] =
- crtc_state->pixel_rate;
- }
+ if (plane_state->uapi.visible && plane->min_cdclk)
+ crtc_state->plane_min_cdclk[plane->id] =
+ DIV_ROUND_UP(crtc_state->pixel_rate,
+ intel_cdclk_ppc(display, crtc_state->double_wide));
drm_dbg_kms(display->drm,
"[PLANE:%d:%s] min_cdclk %d kHz\n",
plane->base.base.id, plane->base.name,
--
2.54.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 2/4] drm/i915/cdclk: Introduce HAS_2PPC()
2026-07-15 12:09 [PATCH 0/4] drm/i915/cdclk: Workaround some kind of scaler 2PPC issue Ville Syrjala
2026-07-15 12:09 ` [PATCH 1/4] drm/i915/cdclk: Use intel_cdclk_ppc() in intel_modeset_readout_hw_state() Ville Syrjala
@ 2026-07-15 12:09 ` Ville Syrjala
2026-07-16 4:03 ` Garg, Nemesa
2026-07-15 12:09 ` [PATCH 3/4] drm/i915/cdclk: Introduce crtc_state->pixel_rate_cdclk Ville Syrjala
` (5 subsequent siblings)
7 siblings, 1 reply; 14+ messages in thread
From: Ville Syrjala @ 2026-07-15 12:09 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
We'll need to check for the "does the platform do 2 pixels per clock?"
thing in a few places. Add a feature macro for it.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_cdclk.c | 2 +-
drivers/gpu/drm/i915/display/intel_display_device.h | 1 +
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.c b/drivers/gpu/drm/i915/display/intel_cdclk.c
index 1d7ff2cbaebb..12bb6c414683 100644
--- a/drivers/gpu/drm/i915/display/intel_cdclk.c
+++ b/drivers/gpu/drm/i915/display/intel_cdclk.c
@@ -2910,7 +2910,7 @@ intel_set_cdclk_post_plane_update(struct intel_atomic_state *state)
/* pixels per CDCLK */
int intel_cdclk_ppc(struct intel_display *display, bool double_wide)
{
- return DISPLAY_VER(display) >= 10 || double_wide ? 2 : 1;
+ return HAS_2PPC(display) || double_wide ? 2 : 1;
}
/* max pixel rate as % of CDCLK (not accounting for PPC) */
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
index 9aeba329b9bd..7121e7cd9512 100644
--- a/drivers/gpu/drm/i915/display/intel_display_device.h
+++ b/drivers/gpu/drm/i915/display/intel_display_device.h
@@ -146,6 +146,7 @@ struct intel_display_platforms {
func(supports_tv);
#define HAS_128B_Y_TILING(__display) (!(__display)->platform.i915g && !(__display)->platform.i915gm)
+#define HAS_2PPC(__display) (DISPLAY_VER(__display) >= 10)
#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)
--
2.54.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 3/4] drm/i915/cdclk: Introduce crtc_state->pixel_rate_cdclk
2026-07-15 12:09 [PATCH 0/4] drm/i915/cdclk: Workaround some kind of scaler 2PPC issue Ville Syrjala
2026-07-15 12:09 ` [PATCH 1/4] drm/i915/cdclk: Use intel_cdclk_ppc() in intel_modeset_readout_hw_state() Ville Syrjala
2026-07-15 12:09 ` [PATCH 2/4] drm/i915/cdclk: Introduce HAS_2PPC() Ville Syrjala
@ 2026-07-15 12:09 ` Ville Syrjala
2026-07-16 4:00 ` Garg, Nemesa
2026-07-15 12:09 ` [PATCH 4/4] drm/i915/cdclk: Deal with 2 PPC hscale issues when calculating min CDCLK Ville Syrjala
` (4 subsequent siblings)
7 siblings, 1 reply; 14+ messages in thread
From: Ville Syrjala @ 2026-07-15 12:09 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
We'll need to do additional adjustments to the pipe pixel rate
for the purposes of min CDCLK calculations. Add a new
crtc_state->pixel_rate_cdclk for that purpose. We'll leave the
original crtc_state->pixel_rate for data rate related calculations
since we presumably don't need those extra adjustments there.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/hsw_ips.c | 2 +-
drivers/gpu/drm/i915/display/i9xx_plane.c | 4 ++--
drivers/gpu/drm/i915/display/intel_cdclk.c | 2 +-
drivers/gpu/drm/i915/display/intel_display.c | 8 ++++++--
.../gpu/drm/i915/display/intel_display_types.h | 7 +++++++
drivers/gpu/drm/i915/display/intel_fbc.c | 2 +-
.../gpu/drm/i915/display/intel_modeset_setup.c | 2 +-
drivers/gpu/drm/i915/display/intel_sprite.c | 18 +++++++++---------
8 files changed, 28 insertions(+), 17 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/hsw_ips.c b/drivers/gpu/drm/i915/display/hsw_ips.c
index cbaef3f13f00..f828ec962164 100644
--- a/drivers/gpu/drm/i915/display/hsw_ips.c
+++ b/drivers/gpu/drm/i915/display/hsw_ips.c
@@ -207,7 +207,7 @@ static int _hsw_ips_min_cdclk(const struct intel_crtc_state *crtc_state)
struct intel_display *display = to_intel_display(crtc_state);
if (display->platform.broadwell)
- return DIV_ROUND_UP(crtc_state->pixel_rate * 100, 95);
+ return DIV_ROUND_UP(crtc_state->pixel_rate_cdclk * 100, 95);
/* no IPS specific limits to worry about */
return 0;
diff --git a/drivers/gpu/drm/i915/display/i9xx_plane.c b/drivers/gpu/drm/i915/display/i9xx_plane.c
index 70734d32a409..b3dbcd53999a 100644
--- a/drivers/gpu/drm/i915/display/i9xx_plane.c
+++ b/drivers/gpu/drm/i915/display/i9xx_plane.c
@@ -418,13 +418,13 @@ static int i9xx_plane_min_cdclk(const struct intel_crtc_state *crtc_state,
unsigned int num, den;
/*
- * Note that crtc_state->pixel_rate accounts for both
+ * Note that crtc_state->pixel_rate_cdclk accounts for both
* horizontal and vertical panel fitter downscaling factors.
* Pre-HSW bspec tells us to only consider the horizontal
* downscaling factor here. We ignore that and just consider
* both for simplicity.
*/
- pixel_rate = crtc_state->pixel_rate;
+ pixel_rate = crtc_state->pixel_rate_cdclk;
i9xx_plane_ratio(crtc_state, plane_state, &num, &den);
diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.c b/drivers/gpu/drm/i915/display/intel_cdclk.c
index 12bb6c414683..a53d88727177 100644
--- a/drivers/gpu/drm/i915/display/intel_cdclk.c
+++ b/drivers/gpu/drm/i915/display/intel_cdclk.c
@@ -2936,7 +2936,7 @@ static int _intel_pixel_rate_to_cdclk(const struct intel_crtc_state *crtc_state,
static int intel_pixel_rate_to_cdclk(const struct intel_crtc_state *crtc_state)
{
- return _intel_pixel_rate_to_cdclk(crtc_state, crtc_state->pixel_rate);
+ return _intel_pixel_rate_to_cdclk(crtc_state, crtc_state->pixel_rate_cdclk);
}
static int intel_planes_min_cdclk(const struct intel_crtc_state *crtc_state)
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index 38763a6802c5..df43be51b3ba 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -2259,13 +2259,16 @@ static void intel_crtc_compute_pixel_rate(struct intel_crtc_state *crtc_state)
{
struct intel_display *display = to_intel_display(crtc_state);
- if (HAS_GMCH(display))
+ if (HAS_GMCH(display)) {
/* FIXME calculate proper pipe pixel rate for GMCH pfit */
crtc_state->pixel_rate =
crtc_state->hw.pipe_mode.crtc_clock;
- else
+ crtc_state->pixel_rate_cdclk = crtc_state->pixel_rate;
+ } else {
crtc_state->pixel_rate =
ilk_pipe_pixel_rate(crtc_state);
+ crtc_state->pixel_rate_cdclk = crtc_state->pixel_rate;
+ }
}
static void intel_joiner_adjust_timings(const struct intel_crtc_state *crtc_state,
@@ -5382,6 +5385,7 @@ intel_pipe_config_compare(const struct intel_crtc_state *current_config,
PIPE_CONF_CHECK_I(pch_pfit.casf.strength);
PIPE_CONF_CHECK_I(scaler_state.scaler_id);
+ PIPE_CONF_CHECK_I(pixel_rate_cdclk);
PIPE_CONF_CHECK_I(pixel_rate);
PIPE_CONF_CHECK_X(gamma_mode);
diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h
index 8bd213db5e7a..17336ad6d5e9 100644
--- a/drivers/gpu/drm/i915/display/intel_display_types.h
+++ b/drivers/gpu/drm/i915/display/intel_display_types.h
@@ -1083,6 +1083,13 @@ struct intel_crtc_state {
*/
unsigned int pixel_rate;
+ /*
+ * Pipe pixel rate for CDCLK, adjusted for
+ * panel fitter/pipe scaler downscaling.
+ * CDCLK use cases need further adjustment.
+ */
+ unsigned int pixel_rate_cdclk;
+
/* Whether to set up the PCH/FDI. Note that we never allow sharing
* between pch encoders and cpu encoders. */
bool has_pch_encoder;
diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
index a7d02dd6ca96..cd889f7429bb 100644
--- a/drivers/gpu/drm/i915/display/intel_fbc.c
+++ b/drivers/gpu/drm/i915/display/intel_fbc.c
@@ -1567,7 +1567,7 @@ static int _intel_fbc_min_cdclk(const struct intel_crtc_state *crtc_state)
/* WaFbcExceedCdClockThreshold:hsw,bdw */
if (display->platform.haswell || display->platform.broadwell)
- return DIV_ROUND_UP(crtc_state->pixel_rate * 100, 95);
+ return DIV_ROUND_UP(crtc_state->pixel_rate_cdclk * 100, 95);
/* no FBC specific limits to worry about */
return 0;
diff --git a/drivers/gpu/drm/i915/display/intel_modeset_setup.c b/drivers/gpu/drm/i915/display/intel_modeset_setup.c
index 14d829171c7d..6aed88173770 100644
--- a/drivers/gpu/drm/i915/display/intel_modeset_setup.c
+++ b/drivers/gpu/drm/i915/display/intel_modeset_setup.c
@@ -856,7 +856,7 @@ static void intel_modeset_readout_hw_state(struct intel_display *display)
*/
if (plane_state->uapi.visible && plane->min_cdclk)
crtc_state->plane_min_cdclk[plane->id] =
- DIV_ROUND_UP(crtc_state->pixel_rate,
+ DIV_ROUND_UP(crtc_state->pixel_rate_cdclk,
intel_cdclk_ppc(display, crtc_state->double_wide));
drm_dbg_kms(display->drm,
"[PLANE:%d:%s] min_cdclk %d kHz\n",
diff --git a/drivers/gpu/drm/i915/display/intel_sprite.c b/drivers/gpu/drm/i915/display/intel_sprite.c
index 6a65f92e8a03..9fe9d2644958 100644
--- a/drivers/gpu/drm/i915/display/intel_sprite.c
+++ b/drivers/gpu/drm/i915/display/intel_sprite.c
@@ -241,13 +241,13 @@ int vlv_plane_min_cdclk(const struct intel_crtc_state *crtc_state,
unsigned int num, den;
/*
- * Note that crtc_state->pixel_rate accounts for both
+ * Note that crtc_state->pixel_rate_cdclk accounts for both
* horizontal and vertical panel fitter downscaling factors.
* Pre-HSW bspec tells us to only consider the horizontal
* downscaling factor here. We ignore that and just consider
* both for simplicity.
*/
- pixel_rate = crtc_state->pixel_rate;
+ pixel_rate = crtc_state->pixel_rate_cdclk;
vlv_plane_ratio(crtc_state, plane_state, &num, &den);
@@ -550,13 +550,13 @@ int ivb_plane_min_cdclk(const struct intel_crtc_state *crtc_state,
unsigned int num, den;
/*
- * Note that crtc_state->pixel_rate accounts for both
+ * Note that crtc_state->pixel_rate_cdclk accounts for both
* horizontal and vertical panel fitter downscaling factors.
* Pre-HSW bspec tells us to only consider the horizontal
* downscaling factor here. We ignore that and just consider
* both for simplicity.
*/
- pixel_rate = crtc_state->pixel_rate;
+ pixel_rate = crtc_state->pixel_rate_cdclk;
ivb_plane_ratio(crtc_state, plane_state, &num, &den);
@@ -570,13 +570,13 @@ static int ivb_sprite_min_cdclk(const struct intel_crtc_state *crtc_state,
unsigned int num, den;
/*
- * Note that crtc_state->pixel_rate accounts for both
+ * Note that crtc_state->pixel_rate_cdclk accounts for both
* horizontal and vertical panel fitter downscaling factors.
* Pre-HSW bspec tells us to only consider the horizontal
* downscaling factor here. We ignore that and just consider
* both for simplicity.
*/
- pixel_rate = crtc_state->pixel_rate;
+ pixel_rate = crtc_state->pixel_rate_cdclk;
src_w = drm_rect_width(&plane_state->uapi.src) >> 16;
dst_w = drm_rect_width(&plane_state->uapi.dst);
@@ -629,7 +629,7 @@ static void hsw_plane_ratio(const struct intel_crtc_state *crtc_state,
int hsw_plane_min_cdclk(const struct intel_crtc_state *crtc_state,
const struct intel_plane_state *plane_state)
{
- unsigned int pixel_rate = crtc_state->pixel_rate;
+ unsigned int pixel_rate = crtc_state->pixel_rate_cdclk;
unsigned int num, den;
hsw_plane_ratio(crtc_state, plane_state, &num, &den);
@@ -918,13 +918,13 @@ static int g4x_sprite_min_cdclk(const struct intel_crtc_state *crtc_state,
unsigned int limit, decimate;
/*
- * Note that crtc_state->pixel_rate accounts for both
+ * Note that crtc_state->pixel_rate_cdclk accounts for both
* horizontal and vertical panel fitter downscaling factors.
* Pre-HSW bspec tells us to only consider the horizontal
* downscaling factor here. We ignore that and just consider
* both for simplicity.
*/
- pixel_rate = crtc_state->pixel_rate;
+ pixel_rate = crtc_state->pixel_rate_cdclk;
/* Horizontal downscaling limits the maximum pixel rate */
hscale = drm_rect_calc_hscale(&plane_state->uapi.src,
--
2.54.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 4/4] drm/i915/cdclk: Deal with 2 PPC hscale issues when calculating min CDCLK
2026-07-15 12:09 [PATCH 0/4] drm/i915/cdclk: Workaround some kind of scaler 2PPC issue Ville Syrjala
` (2 preceding siblings ...)
2026-07-15 12:09 ` [PATCH 3/4] drm/i915/cdclk: Introduce crtc_state->pixel_rate_cdclk Ville Syrjala
@ 2026-07-15 12:09 ` Ville Syrjala
2026-07-16 4:01 ` Garg, Nemesa
2026-07-16 10:58 ` Srinivas, Vidya
2026-07-15 13:28 ` ✗ CI.checkpatch: warning for drm/i915/cdclk: Workaround some kind of scaler 2PPC issue Patchwork
` (3 subsequent siblings)
7 siblings, 2 replies; 14+ messages in thread
From: Ville Syrjala @ 2026-07-15 12:09 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Double the fractional part of the horizontal scale factor
for the purposes of min_cdck calculation. This bumps the min
CDCLK sufficiently to overcome some kind of 2 PPC granularity
issue. Without this CDCLK may end up being too low and we get
underruns with certail horizontal downscale factors.
The current Bspec formula calls for doubling only the
fractional part below 0.5, and rounding it to down to
a unit fraction. But that formula does not result in a
sufficient CDCLK bump in a lot of cases. Empirical evidence
supports doubling the entire fractional part, so let's just
do that while we wait for further analysis from the hardware
team.
Also note that the position of the scaler output window also
seems to matter. If the output is near the left edge of the
screen then lower CDCLK is sufficient, but moving the output
window further to the right causes underruns unless CDCLK is
also bumped. Some prefill happening during hblank already?
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_display.c | 26 ++++++++-
drivers/gpu/drm/i915/display/intel_plane.c | 55 +++++++++++++++++++
drivers/gpu/drm/i915/display/intel_plane.h | 5 ++
.../drm/i915/display/skl_universal_plane.c | 6 +-
4 files changed, 88 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index df43be51b3ba..2c55a4818ad7 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -2234,6 +2234,29 @@ static u32 ilk_pipe_pixel_rate(const struct intel_crtc_state *crtc_state)
pixel_rate);
}
+static u32 ilk_pipe_pixel_rate_cdclk(const struct intel_crtc_state *crtc_state)
+{
+ struct intel_display *display = to_intel_display(crtc_state);
+ u32 pixel_rate = crtc_state->hw.pipe_mode.crtc_clock;
+ unsigned int ppc = HAS_2PPC(display) ? 2 : 1;
+ struct drm_rect src;
+
+ /*
+ * We only use IF-ID interlacing. If we ever use
+ * PF-ID we'll need to adjust the pixel_rate here.
+ */
+
+ if (!crtc_state->pch_pfit.enabled)
+ return pixel_rate;
+
+ drm_rect_init(&src, 0, 0,
+ drm_rect_width(&crtc_state->pipe_src) << 16,
+ drm_rect_height(&crtc_state->pipe_src) << 16);
+
+ return intel_adjusted_rate_cdclk(&src, &crtc_state->pch_pfit.dst,
+ pixel_rate, ppc);
+}
+
static void intel_mode_from_crtc_timings(struct drm_display_mode *mode,
const struct drm_display_mode *timings)
{
@@ -2267,7 +2290,8 @@ static void intel_crtc_compute_pixel_rate(struct intel_crtc_state *crtc_state)
} else {
crtc_state->pixel_rate =
ilk_pipe_pixel_rate(crtc_state);
- crtc_state->pixel_rate_cdclk = crtc_state->pixel_rate;
+ crtc_state->pixel_rate_cdclk =
+ ilk_pipe_pixel_rate_cdclk(crtc_state);
}
}
diff --git a/drivers/gpu/drm/i915/display/intel_plane.c b/drivers/gpu/drm/i915/display/intel_plane.c
index a440f92ff00c..47c3e0c157b6 100644
--- a/drivers/gpu/drm/i915/display/intel_plane.c
+++ b/drivers/gpu/drm/i915/display/intel_plane.c
@@ -264,6 +264,50 @@ unsigned int intel_adjusted_rate(const struct drm_rect *src,
dst_w * dst_h);
}
+static unsigned int hscale_cdclk(const struct drm_rect *src,
+ const struct drm_rect *dst,
+ unsigned int ppc)
+{
+ unsigned int hscale;
+
+ hscale = drm_rect_calc_hscale(src, dst, 0, INT_MAX);
+ hscale = max(hscale, 0x10000);
+
+ /*
+ * Double the fractional part due to some 2 PPC granularity issue
+ *
+ * FIXME: BSpec calls for doubling only the <0.5 fractional part,
+ * and rounding it down to a unit fraction. In practice that is
+ * not sufficient, and we need a more aggressive CDCLK bump in
+ * many cases. The updated formula was derived empirically.
+ * This may need to be updated once we have better undestading
+ * of what's happening in the hardware...
+ */
+ return (hscale & ~0xffff) + ppc * (hscale & 0xffff);
+}
+
+static unsigned int vscale_cdclk(const struct drm_rect *src,
+ const struct drm_rect *dst)
+{
+ unsigned int vscale;
+
+ vscale = drm_rect_calc_vscale(src, dst,0, INT_MAX);
+ vscale = max(vscale, 0x10000);
+
+ return vscale;
+}
+
+unsigned int intel_adjusted_rate_cdclk(const struct drm_rect *src,
+ const struct drm_rect *dst,
+ unsigned int rate,
+ unsigned int ppc)
+{
+ unsigned int hscale = hscale_cdclk(src, dst, ppc);
+ unsigned int vscale = vscale_cdclk(src, dst);
+
+ return DIV64_U64_ROUND_UP((u64) rate * hscale * vscale, 1ull << 32);
+}
+
unsigned int intel_plane_pixel_rate(const struct intel_crtc_state *crtc_state,
const struct intel_plane_state *plane_state)
{
@@ -284,6 +328,17 @@ unsigned int intel_plane_pixel_rate(const struct intel_crtc_state *crtc_state,
crtc_state->pixel_rate);
}
+unsigned int intel_plane_pixel_rate_cdclk(const struct intel_crtc_state *crtc_state,
+ const struct intel_plane_state *plane_state)
+{
+ struct intel_display *display = to_intel_display(crtc_state);
+ unsigned int ppc = HAS_2PPC(display) ? 2 : 1;
+
+ return intel_adjusted_rate_cdclk(&plane_state->uapi.src,
+ &plane_state->uapi.dst,
+ crtc_state->pixel_rate_cdclk, ppc);
+}
+
unsigned int intel_plane_data_rate(const struct intel_crtc_state *crtc_state,
const struct intel_plane_state *plane_state,
int color_plane)
diff --git a/drivers/gpu/drm/i915/display/intel_plane.h b/drivers/gpu/drm/i915/display/intel_plane.h
index 31a6229aea73..dba2be24aae2 100644
--- a/drivers/gpu/drm/i915/display/intel_plane.h
+++ b/drivers/gpu/drm/i915/display/intel_plane.h
@@ -29,8 +29,13 @@ bool intel_plane_can_async_flip(struct intel_plane *plane,
unsigned int intel_adjusted_rate(const struct drm_rect *src,
const struct drm_rect *dst,
unsigned int rate);
+unsigned int intel_adjusted_rate_cdclk(const struct drm_rect *src,
+ const struct drm_rect *dst,
+ unsigned int rate, unsigned int ppc);
unsigned int intel_plane_pixel_rate(const struct intel_crtc_state *crtc_state,
const struct intel_plane_state *plane_state);
+unsigned int intel_plane_pixel_rate_cdclk(const struct intel_crtc_state *crtc_state,
+ const struct intel_plane_state *plane_state);
unsigned int intel_plane_data_rate(const struct intel_crtc_state *crtc_state,
const struct intel_plane_state *plane_state,
diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
index 164b7d61c9a3..b246fc48558b 100644
--- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
+++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
@@ -266,7 +266,7 @@ bool icl_is_hdr_plane(struct intel_display *display, enum plane_id plane_id)
static int icl_plane_min_cdclk(const struct intel_crtc_state *crtc_state,
const struct intel_plane_state *plane_state)
{
- unsigned int pixel_rate = intel_plane_pixel_rate(crtc_state, plane_state);
+ unsigned int pixel_rate = intel_plane_pixel_rate_cdclk(crtc_state, plane_state);
/* two pixels per clock */
return DIV_ROUND_UP(pixel_rate, 2);
@@ -290,7 +290,7 @@ glk_plane_ratio(const struct intel_plane_state *plane_state,
static int glk_plane_min_cdclk(const struct intel_crtc_state *crtc_state,
const struct intel_plane_state *plane_state)
{
- unsigned int pixel_rate = intel_plane_pixel_rate(crtc_state, plane_state);
+ unsigned int pixel_rate = intel_plane_pixel_rate_cdclk(crtc_state, plane_state);
unsigned int num, den;
glk_plane_ratio(plane_state, &num, &den);
@@ -317,7 +317,7 @@ skl_plane_ratio(const struct intel_plane_state *plane_state,
static int skl_plane_min_cdclk(const struct intel_crtc_state *crtc_state,
const struct intel_plane_state *plane_state)
{
- unsigned int pixel_rate = intel_plane_pixel_rate(crtc_state, plane_state);
+ unsigned int pixel_rate = intel_plane_pixel_rate_cdclk(crtc_state, plane_state);
unsigned int num, den;
skl_plane_ratio(plane_state, &num, &den);
--
2.54.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* ✗ CI.checkpatch: warning for drm/i915/cdclk: Workaround some kind of scaler 2PPC issue
2026-07-15 12:09 [PATCH 0/4] drm/i915/cdclk: Workaround some kind of scaler 2PPC issue Ville Syrjala
` (3 preceding siblings ...)
2026-07-15 12:09 ` [PATCH 4/4] drm/i915/cdclk: Deal with 2 PPC hscale issues when calculating min CDCLK Ville Syrjala
@ 2026-07-15 13:28 ` Patchwork
2026-07-15 13:29 ` ✓ CI.KUnit: success " Patchwork
` (2 subsequent siblings)
7 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2026-07-15 13:28 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-xe
== Series Details ==
Series: drm/i915/cdclk: Workaround some kind of scaler 2PPC issue
URL : https://patchwork.freedesktop.org/series/170484/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
061140b9bc586ae7f40abc1249c97e1cc72d1b9d
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 075a046d92212ba7ac27a00fd4d595ee3f9cb0ce
Author: Ville Syrjälä <ville.syrjala@linux.intel.com>
Date: Wed Jul 15 15:09:26 2026 +0300
drm/i915/cdclk: Deal with 2 PPC hscale issues when calculating min CDCLK
Double the fractional part of the horizontal scale factor
for the purposes of min_cdck calculation. This bumps the min
CDCLK sufficiently to overcome some kind of 2 PPC granularity
issue. Without this CDCLK may end up being too low and we get
underruns with certail horizontal downscale factors.
The current Bspec formula calls for doubling only the
fractional part below 0.5, and rounding it to down to
a unit fraction. But that formula does not result in a
sufficient CDCLK bump in a lot of cases. Empirical evidence
supports doubling the entire fractional part, so let's just
do that while we wait for further analysis from the hardware
team.
Also note that the position of the scaler output window also
seems to matter. If the output is near the left edge of the
screen then lower CDCLK is sufficient, but moving the output
window further to the right causes underruns unless CDCLK is
also bumped. Some prefill happening during hblank already?
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
+ /mt/dim checkpatch 116ce94f4e028e50e3523c46a8ce1e665ce47cb9 drm-intel
e9c7d16d400d drm/i915/cdclk: Use intel_cdclk_ppc() in intel_modeset_readout_hw_state()
-:59: WARNING:LONG_LINE: line length of 104 exceeds 100 columns
#59: FILE: drivers/gpu/drm/i915/display/intel_modeset_setup.c:860:
+ intel_cdclk_ppc(display, crtc_state->double_wide));
total: 0 errors, 1 warnings, 0 checks, 33 lines checked
5dce3ccf90bc drm/i915/cdclk: Introduce HAS_2PPC()
dc9b19131017 drm/i915/cdclk: Introduce crtc_state->pixel_rate_cdclk
075a046d9221 drm/i915/cdclk: Deal with 2 PPC hscale issues when calculating min CDCLK
-:111: ERROR:SPACING: space required after that ',' (ctx:VxV)
#111: FILE: drivers/gpu/drm/i915/display/intel_plane.c:294:
+ vscale = drm_rect_calc_vscale(src, dst,0, INT_MAX);
^
-:125: CHECK:SPACING: No space is necessary after a cast
#125: FILE: drivers/gpu/drm/i915/display/intel_plane.c:308:
+ return DIV64_U64_ROUND_UP((u64) rate * hscale * vscale, 1ull << 32);
total: 1 errors, 0 warnings, 1 checks, 142 lines checked
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ CI.KUnit: success for drm/i915/cdclk: Workaround some kind of scaler 2PPC issue
2026-07-15 12:09 [PATCH 0/4] drm/i915/cdclk: Workaround some kind of scaler 2PPC issue Ville Syrjala
` (4 preceding siblings ...)
2026-07-15 13:28 ` ✗ CI.checkpatch: warning for drm/i915/cdclk: Workaround some kind of scaler 2PPC issue Patchwork
@ 2026-07-15 13:29 ` Patchwork
2026-07-15 14:06 ` ✓ Xe.CI.BAT: " Patchwork
2026-07-15 15:53 ` ✗ Xe.CI.FULL: failure " Patchwork
7 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2026-07-15 13:29 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-xe
== Series Details ==
Series: drm/i915/cdclk: Workaround some kind of scaler 2PPC issue
URL : https://patchwork.freedesktop.org/series/170484/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[13:28:37] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:28:42] 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
[13:29:14] Starting KUnit Kernel (1/1)...
[13:29:14] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:29:14] ================== guc_buf (11 subtests) ===================
[13:29:14] [PASSED] test_smallest
[13:29:14] [PASSED] test_largest
[13:29:14] [PASSED] test_granular
[13:29:14] [PASSED] test_unique
[13:29:14] [PASSED] test_overlap
[13:29:14] [PASSED] test_reusable
[13:29:14] [PASSED] test_too_big
[13:29:14] [PASSED] test_flush
[13:29:14] [PASSED] test_lookup
[13:29:14] [PASSED] test_data
[13:29:14] [PASSED] test_class
[13:29:14] ===================== [PASSED] guc_buf =====================
[13:29:14] =================== guc_dbm (7 subtests) ===================
[13:29:14] [PASSED] test_empty
[13:29:14] [PASSED] test_default
[13:29:14] ======================== test_size ========================
[13:29:14] [PASSED] 4
[13:29:14] [PASSED] 8
[13:29:14] [PASSED] 32
[13:29:14] [PASSED] 256
[13:29:14] ==================== [PASSED] test_size ====================
[13:29:14] ======================= test_reuse ========================
[13:29:14] [PASSED] 4
[13:29:14] [PASSED] 8
[13:29:14] [PASSED] 32
[13:29:14] [PASSED] 256
[13:29:14] =================== [PASSED] test_reuse ====================
[13:29:14] =================== test_range_overlap ====================
[13:29:14] [PASSED] 4
[13:29:14] [PASSED] 8
[13:29:14] [PASSED] 32
[13:29:14] [PASSED] 256
[13:29:14] =============== [PASSED] test_range_overlap ================
[13:29:14] =================== test_range_compact ====================
[13:29:14] [PASSED] 4
[13:29:14] [PASSED] 8
[13:29:14] [PASSED] 32
[13:29:14] [PASSED] 256
[13:29:14] =============== [PASSED] test_range_compact ================
[13:29:14] ==================== test_range_spare =====================
[13:29:14] [PASSED] 4
[13:29:14] [PASSED] 8
[13:29:14] [PASSED] 32
[13:29:14] [PASSED] 256
[13:29:14] ================ [PASSED] test_range_spare =================
[13:29:14] ===================== [PASSED] guc_dbm =====================
[13:29:14] =================== guc_idm (6 subtests) ===================
[13:29:14] [PASSED] bad_init
[13:29:14] [PASSED] no_init
[13:29:14] [PASSED] init_fini
[13:29:14] [PASSED] check_used
[13:29:14] [PASSED] check_quota
[13:29:14] [PASSED] check_all
[13:29:14] ===================== [PASSED] guc_idm =====================
[13:29:14] =============== guc_klv_helpers (9 subtests) ===============
[13:29:14] [PASSED] test_count
[13:29:14] [PASSED] test_encode_u32
[13:29:14] [PASSED] test_encode_u64
[13:29:14] [PASSED] test_encode_string
[13:29:14] [PASSED] test_encode_object_raw
[13:29:14] [PASSED] test_encode_object_klv
[13:29:14] [PASSED] test_encode_object_nested
[13:29:14] [PASSED] test_encode_object_basic
[13:29:14] [PASSED] test_print
[13:29:14] ================= [PASSED] guc_klv_helpers =================
[13:29:14] ================== no_relay (3 subtests) ===================
[13:29:14] [PASSED] xe_drops_guc2pf_if_not_ready
[13:29:14] [PASSED] xe_drops_guc2vf_if_not_ready
[13:29:14] [PASSED] xe_rejects_send_if_not_ready
[13:29:14] ==================== [PASSED] no_relay =====================
[13:29:14] ================== pf_relay (14 subtests) ==================
[13:29:14] [PASSED] pf_rejects_guc2pf_too_short
[13:29:14] [PASSED] pf_rejects_guc2pf_too_long
[13:29:14] [PASSED] pf_rejects_guc2pf_no_payload
[13:29:14] [PASSED] pf_fails_no_payload
[13:29:14] [PASSED] pf_fails_bad_origin
[13:29:14] [PASSED] pf_fails_bad_type
[13:29:14] [PASSED] pf_txn_reports_error
[13:29:14] [PASSED] pf_txn_sends_pf2guc
[13:29:14] [PASSED] pf_sends_pf2guc
[13:29:14] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:29:14] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:29:14] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:29:14] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:29:14] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:29:14] ==================== [PASSED] pf_relay =====================
[13:29:14] ================== vf_relay (3 subtests) ===================
[13:29:14] [PASSED] vf_rejects_guc2vf_too_short
[13:29:14] [PASSED] vf_rejects_guc2vf_too_long
[13:29:14] [PASSED] vf_rejects_guc2vf_no_payload
[13:29:14] ==================== [PASSED] vf_relay =====================
[13:29:14] ================ pf_gt_config (9 subtests) =================
[13:29:14] [PASSED] fair_contexts_1vf
[13:29:14] [PASSED] fair_doorbells_1vf
[13:29:14] [PASSED] fair_ggtt_1vf
[13:29:14] ====================== fair_vram_1vf ======================
[13:29:14] [PASSED] 3.50 GiB
[13:29:14] [PASSED] 11.5 GiB
[13:29:14] [PASSED] 15.5 GiB
[13:29:14] [PASSED] 31.5 GiB
[13:29:14] [PASSED] 63.5 GiB
[13:29:14] [PASSED] 1.91 GiB
[13:29:14] ================== [PASSED] fair_vram_1vf ==================
[13:29:14] ================ fair_vram_1vf_admin_only =================
[13:29:14] [PASSED] 3.50 GiB
[13:29:14] [PASSED] 11.5 GiB
[13:29:14] [PASSED] 15.5 GiB
[13:29:14] [PASSED] 31.5 GiB
[13:29:14] [PASSED] 63.5 GiB
[13:29:14] [PASSED] 1.91 GiB
[13:29:14] ============ [PASSED] fair_vram_1vf_admin_only =============
[13:29:14] ====================== fair_contexts ======================
[13:29:14] [PASSED] 1 VF
[13:29:14] [PASSED] 2 VFs
[13:29:14] [PASSED] 3 VFs
[13:29:14] [PASSED] 4 VFs
[13:29:14] [PASSED] 5 VFs
[13:29:14] [PASSED] 6 VFs
[13:29:14] [PASSED] 7 VFs
[13:29:14] [PASSED] 8 VFs
[13:29:14] [PASSED] 9 VFs
[13:29:14] [PASSED] 10 VFs
[13:29:14] [PASSED] 11 VFs
[13:29:14] [PASSED] 12 VFs
[13:29:14] [PASSED] 13 VFs
[13:29:14] [PASSED] 14 VFs
[13:29:14] [PASSED] 15 VFs
[13:29:14] [PASSED] 16 VFs
[13:29:14] [PASSED] 17 VFs
[13:29:14] [PASSED] 18 VFs
[13:29:14] [PASSED] 19 VFs
[13:29:14] [PASSED] 20 VFs
[13:29:14] [PASSED] 21 VFs
[13:29:14] [PASSED] 22 VFs
[13:29:14] [PASSED] 23 VFs
[13:29:14] [PASSED] 24 VFs
[13:29:14] [PASSED] 25 VFs
[13:29:14] [PASSED] 26 VFs
[13:29:14] [PASSED] 27 VFs
[13:29:14] [PASSED] 28 VFs
[13:29:14] [PASSED] 29 VFs
[13:29:14] [PASSED] 30 VFs
[13:29:14] [PASSED] 31 VFs
[13:29:14] [PASSED] 32 VFs
[13:29:14] [PASSED] 33 VFs
[13:29:14] [PASSED] 34 VFs
[13:29:14] [PASSED] 35 VFs
[13:29:14] [PASSED] 36 VFs
[13:29:14] [PASSED] 37 VFs
[13:29:14] [PASSED] 38 VFs
[13:29:14] [PASSED] 39 VFs
[13:29:14] [PASSED] 40 VFs
[13:29:14] [PASSED] 41 VFs
[13:29:14] [PASSED] 42 VFs
[13:29:14] [PASSED] 43 VFs
[13:29:14] [PASSED] 44 VFs
[13:29:14] [PASSED] 45 VFs
[13:29:14] [PASSED] 46 VFs
[13:29:14] [PASSED] 47 VFs
[13:29:14] [PASSED] 48 VFs
[13:29:14] [PASSED] 49 VFs
[13:29:14] [PASSED] 50 VFs
[13:29:14] [PASSED] 51 VFs
[13:29:14] [PASSED] 52 VFs
[13:29:14] [PASSED] 53 VFs
[13:29:14] [PASSED] 54 VFs
[13:29:14] [PASSED] 55 VFs
[13:29:14] [PASSED] 56 VFs
[13:29:14] [PASSED] 57 VFs
[13:29:14] [PASSED] 58 VFs
[13:29:14] [PASSED] 59 VFs
[13:29:14] [PASSED] 60 VFs
[13:29:14] [PASSED] 61 VFs
[13:29:14] [PASSED] 62 VFs
[13:29:14] [PASSED] 63 VFs
[13:29:14] ================== [PASSED] fair_contexts ==================
[13:29:14] ===================== fair_doorbells ======================
[13:29:14] [PASSED] 1 VF
[13:29:14] [PASSED] 2 VFs
[13:29:14] [PASSED] 3 VFs
[13:29:14] [PASSED] 4 VFs
[13:29:14] [PASSED] 5 VFs
[13:29:14] [PASSED] 6 VFs
[13:29:14] [PASSED] 7 VFs
[13:29:14] [PASSED] 8 VFs
[13:29:14] [PASSED] 9 VFs
[13:29:14] [PASSED] 10 VFs
[13:29:14] [PASSED] 11 VFs
[13:29:14] [PASSED] 12 VFs
[13:29:14] [PASSED] 13 VFs
[13:29:14] [PASSED] 14 VFs
[13:29:14] [PASSED] 15 VFs
[13:29:14] [PASSED] 16 VFs
[13:29:14] [PASSED] 17 VFs
[13:29:14] [PASSED] 18 VFs
[13:29:14] [PASSED] 19 VFs
[13:29:14] [PASSED] 20 VFs
[13:29:14] [PASSED] 21 VFs
[13:29:14] [PASSED] 22 VFs
[13:29:14] [PASSED] 23 VFs
[13:29:14] [PASSED] 24 VFs
[13:29:14] [PASSED] 25 VFs
[13:29:14] [PASSED] 26 VFs
[13:29:14] [PASSED] 27 VFs
[13:29:14] [PASSED] 28 VFs
[13:29:14] [PASSED] 29 VFs
[13:29:14] [PASSED] 30 VFs
[13:29:14] [PASSED] 31 VFs
[13:29:14] [PASSED] 32 VFs
[13:29:14] [PASSED] 33 VFs
[13:29:14] [PASSED] 34 VFs
[13:29:14] [PASSED] 35 VFs
[13:29:14] [PASSED] 36 VFs
[13:29:14] [PASSED] 37 VFs
[13:29:14] [PASSED] 38 VFs
[13:29:14] [PASSED] 39 VFs
[13:29:14] [PASSED] 40 VFs
[13:29:14] [PASSED] 41 VFs
[13:29:14] [PASSED] 42 VFs
[13:29:14] [PASSED] 43 VFs
[13:29:14] [PASSED] 44 VFs
[13:29:14] [PASSED] 45 VFs
[13:29:14] [PASSED] 46 VFs
[13:29:14] [PASSED] 47 VFs
[13:29:14] [PASSED] 48 VFs
[13:29:14] [PASSED] 49 VFs
[13:29:14] [PASSED] 50 VFs
[13:29:14] [PASSED] 51 VFs
[13:29:14] [PASSED] 52 VFs
[13:29:14] [PASSED] 53 VFs
[13:29:14] [PASSED] 54 VFs
[13:29:14] [PASSED] 55 VFs
[13:29:14] [PASSED] 56 VFs
[13:29:14] [PASSED] 57 VFs
[13:29:14] [PASSED] 58 VFs
[13:29:14] [PASSED] 59 VFs
[13:29:14] [PASSED] 60 VFs
[13:29:14] [PASSED] 61 VFs
[13:29:14] [PASSED] 62 VFs
[13:29:14] [PASSED] 63 VFs
[13:29:14] ================= [PASSED] fair_doorbells ==================
[13:29:14] ======================== fair_ggtt ========================
[13:29:14] [PASSED] 1 VF
[13:29:14] [PASSED] 2 VFs
[13:29:14] [PASSED] 3 VFs
[13:29:14] [PASSED] 4 VFs
[13:29:14] [PASSED] 5 VFs
[13:29:14] [PASSED] 6 VFs
[13:29:14] [PASSED] 7 VFs
[13:29:14] [PASSED] 8 VFs
[13:29:14] [PASSED] 9 VFs
[13:29:14] [PASSED] 10 VFs
[13:29:14] [PASSED] 11 VFs
[13:29:14] [PASSED] 12 VFs
[13:29:14] [PASSED] 13 VFs
[13:29:14] [PASSED] 14 VFs
[13:29:14] [PASSED] 15 VFs
[13:29:14] [PASSED] 16 VFs
[13:29:14] [PASSED] 17 VFs
[13:29:14] [PASSED] 18 VFs
[13:29:14] [PASSED] 19 VFs
[13:29:14] [PASSED] 20 VFs
[13:29:14] [PASSED] 21 VFs
[13:29:14] [PASSED] 22 VFs
[13:29:14] [PASSED] 23 VFs
[13:29:14] [PASSED] 24 VFs
[13:29:14] [PASSED] 25 VFs
[13:29:14] [PASSED] 26 VFs
[13:29:14] [PASSED] 27 VFs
[13:29:14] [PASSED] 28 VFs
[13:29:14] [PASSED] 29 VFs
[13:29:14] [PASSED] 30 VFs
[13:29:14] [PASSED] 31 VFs
[13:29:14] [PASSED] 32 VFs
[13:29:14] [PASSED] 33 VFs
[13:29:14] [PASSED] 34 VFs
[13:29:14] [PASSED] 35 VFs
[13:29:14] [PASSED] 36 VFs
[13:29:14] [PASSED] 37 VFs
[13:29:14] [PASSED] 38 VFs
[13:29:14] [PASSED] 39 VFs
[13:29:14] [PASSED] 40 VFs
[13:29:14] [PASSED] 41 VFs
[13:29:14] [PASSED] 42 VFs
[13:29:14] [PASSED] 43 VFs
[13:29:14] [PASSED] 44 VFs
[13:29:14] [PASSED] 45 VFs
[13:29:14] [PASSED] 46 VFs
[13:29:14] [PASSED] 47 VFs
[13:29:14] [PASSED] 48 VFs
[13:29:14] [PASSED] 49 VFs
[13:29:14] [PASSED] 50 VFs
[13:29:14] [PASSED] 51 VFs
[13:29:14] [PASSED] 52 VFs
[13:29:14] [PASSED] 53 VFs
[13:29:14] [PASSED] 54 VFs
[13:29:14] [PASSED] 55 VFs
[13:29:14] [PASSED] 56 VFs
[13:29:14] [PASSED] 57 VFs
[13:29:14] [PASSED] 58 VFs
[13:29:14] [PASSED] 59 VFs
[13:29:14] [PASSED] 60 VFs
[13:29:14] [PASSED] 61 VFs
[13:29:14] [PASSED] 62 VFs
[13:29:14] [PASSED] 63 VFs
[13:29:14] ==================== [PASSED] fair_ggtt ====================
[13:29:14] ======================== fair_vram ========================
[13:29:14] [PASSED] 1 VF
[13:29:14] [PASSED] 2 VFs
[13:29:14] [PASSED] 3 VFs
[13:29:14] [PASSED] 4 VFs
[13:29:14] [PASSED] 5 VFs
[13:29:14] [PASSED] 6 VFs
[13:29:14] [PASSED] 7 VFs
[13:29:14] [PASSED] 8 VFs
[13:29:14] [PASSED] 9 VFs
[13:29:14] [PASSED] 10 VFs
[13:29:14] [PASSED] 11 VFs
[13:29:14] [PASSED] 12 VFs
[13:29:14] [PASSED] 13 VFs
[13:29:14] [PASSED] 14 VFs
[13:29:14] [PASSED] 15 VFs
[13:29:14] [PASSED] 16 VFs
[13:29:14] [PASSED] 17 VFs
[13:29:14] [PASSED] 18 VFs
[13:29:14] [PASSED] 19 VFs
[13:29:14] [PASSED] 20 VFs
[13:29:14] [PASSED] 21 VFs
[13:29:14] [PASSED] 22 VFs
[13:29:14] [PASSED] 23 VFs
[13:29:14] [PASSED] 24 VFs
[13:29:14] [PASSED] 25 VFs
[13:29:14] [PASSED] 26 VFs
[13:29:14] [PASSED] 27 VFs
[13:29:14] [PASSED] 28 VFs
[13:29:14] [PASSED] 29 VFs
[13:29:14] [PASSED] 30 VFs
[13:29:14] [PASSED] 31 VFs
[13:29:14] [PASSED] 32 VFs
[13:29:14] [PASSED] 33 VFs
[13:29:14] [PASSED] 34 VFs
[13:29:14] [PASSED] 35 VFs
[13:29:14] [PASSED] 36 VFs
[13:29:14] [PASSED] 37 VFs
[13:29:14] [PASSED] 38 VFs
[13:29:14] [PASSED] 39 VFs
[13:29:14] [PASSED] 40 VFs
[13:29:14] [PASSED] 41 VFs
[13:29:14] [PASSED] 42 VFs
[13:29:14] [PASSED] 43 VFs
[13:29:14] [PASSED] 44 VFs
[13:29:14] [PASSED] 45 VFs
[13:29:14] [PASSED] 46 VFs
[13:29:14] [PASSED] 47 VFs
[13:29:14] [PASSED] 48 VFs
[13:29:14] [PASSED] 49 VFs
[13:29:14] [PASSED] 50 VFs
[13:29:14] [PASSED] 51 VFs
[13:29:14] [PASSED] 52 VFs
[13:29:14] [PASSED] 53 VFs
[13:29:14] [PASSED] 54 VFs
[13:29:14] [PASSED] 55 VFs
[13:29:14] [PASSED] 56 VFs
[13:29:14] [PASSED] 57 VFs
[13:29:14] [PASSED] 58 VFs
[13:29:14] [PASSED] 59 VFs
[13:29:14] [PASSED] 60 VFs
[13:29:14] [PASSED] 61 VFs
[13:29:14] [PASSED] 62 VFs
[13:29:14] [PASSED] 63 VFs
[13:29:14] ==================== [PASSED] fair_vram ====================
[13:29:14] ================== [PASSED] pf_gt_config ===================
[13:29:14] ===================== lmtt (1 subtest) =====================
[13:29:14] ======================== test_ops =========================
[13:29:14] [PASSED] 2-level
[13:29:14] [PASSED] multi-level
[13:29:14] ==================== [PASSED] test_ops =====================
[13:29:14] ====================== [PASSED] lmtt =======================
[13:29:14] ================= sriov_packet (1 subtest) =================
[13:29:14] [PASSED] test_descriptor_init
[13:29:14] ================== [PASSED] sriov_packet ===================
[13:29:14] ================= pf_service (11 subtests) =================
[13:29:14] [PASSED] pf_negotiate_any
[13:29:14] [PASSED] pf_negotiate_base_match
[13:29:14] [PASSED] pf_negotiate_base_newer
[13:29:14] [PASSED] pf_negotiate_base_next
[13:29:14] [SKIPPED] pf_negotiate_base_older (no older minor)
[13:29:14] [PASSED] pf_negotiate_base_prev
[13:29:14] [PASSED] pf_negotiate_latest_match
[13:29:14] [PASSED] pf_negotiate_latest_newer
[13:29:14] [PASSED] pf_negotiate_latest_next
[13:29:14] [SKIPPED] pf_negotiate_latest_older (no older minor)
[13:29:14] [SKIPPED] pf_negotiate_latest_prev (no prev major)
[13:29:14] =================== [PASSED] pf_service ====================
[13:29:14] ================= xe_guc_g2g (2 subtests) ==================
[13:29:14] ============== xe_live_guc_g2g_kunit_default ==============
[13:29:14] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[13:29:14] ============== xe_live_guc_g2g_kunit_allmem ===============
[13:29:14] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[13:29:14] =================== [SKIPPED] xe_guc_g2g ===================
[13:29:14] =================== xe_mocs (2 subtests) ===================
[13:29:14] ================ xe_live_mocs_kernel_kunit ================
[13:29:14] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[13:29:14] ================ xe_live_mocs_reset_kunit =================
[13:29:14] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[13:29:14] ==================== [SKIPPED] xe_mocs =====================
[13:29:14] ================= xe_migrate (2 subtests) ==================
[13:29:14] ================= xe_migrate_sanity_kunit =================
[13:29:14] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[13:29:14] ================== xe_validate_ccs_kunit ==================
[13:29:14] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[13:29:14] =================== [SKIPPED] xe_migrate ===================
[13:29:14] ================== xe_dma_buf (1 subtest) ==================
[13:29:14] ==================== xe_dma_buf_kunit =====================
[13:29:14] ================ [SKIPPED] xe_dma_buf_kunit ================
[13:29:14] =================== [SKIPPED] xe_dma_buf ===================
[13:29:14] ================= xe_bo_shrink (1 subtest) =================
[13:29:14] =================== xe_bo_shrink_kunit ====================
[13:29:14] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[13:29:14] ================== [SKIPPED] xe_bo_shrink ==================
[13:29:14] ==================== xe_bo (2 subtests) ====================
[13:29:14] ================== xe_ccs_migrate_kunit ===================
[13:29:14] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[13:29:14] ==================== xe_bo_evict_kunit ====================
[13:29:14] =============== [SKIPPED] xe_bo_evict_kunit ================
[13:29:14] ===================== [SKIPPED] xe_bo ======================
[13:29:14] ==================== args (13 subtests) ====================
[13:29:14] [PASSED] count_args_test
[13:29:14] [PASSED] call_args_example
[13:29:14] [PASSED] call_args_test
[13:29:14] [PASSED] drop_first_arg_example
[13:29:14] [PASSED] drop_first_arg_test
[13:29:14] [PASSED] first_arg_example
[13:29:14] [PASSED] first_arg_test
[13:29:14] [PASSED] last_arg_example
[13:29:14] [PASSED] last_arg_test
[13:29:14] [PASSED] pick_arg_example
[13:29:14] [PASSED] if_args_example
[13:29:14] [PASSED] if_args_test
[13:29:14] [PASSED] sep_comma_example
[13:29:14] ====================== [PASSED] args =======================
[13:29:14] =================== xe_pci (3 subtests) ====================
[13:29:14] ==================== check_graphics_ip ====================
[13:29:14] [PASSED] 12.00 Xe_LP
[13:29:14] [PASSED] 12.10 Xe_LP+
[13:29:14] [PASSED] 12.55 Xe_HPG
[13:29:14] [PASSED] 12.60 Xe_HPC
[13:29:14] [PASSED] 12.70 Xe_LPG
[13:29:14] [PASSED] 12.71 Xe_LPG
[13:29:14] [PASSED] 12.74 Xe_LPG+
[13:29:14] [PASSED] 20.01 Xe2_HPG
[13:29:14] [PASSED] 20.02 Xe2_HPG
[13:29:14] [PASSED] 20.04 Xe2_LPG
[13:29:14] [PASSED] 30.00 Xe3_LPG
[13:29:14] [PASSED] 30.01 Xe3_LPG
[13:29:14] [PASSED] 30.03 Xe3_LPG
[13:29:14] [PASSED] 30.04 Xe3_LPG
[13:29:14] [PASSED] 30.05 Xe3_LPG
[13:29:14] [PASSED] 35.10 Xe3p_LPG
[13:29:14] [PASSED] 35.11 Xe3p_XPC
[13:29:14] ================ [PASSED] check_graphics_ip ================
[13:29:14] ===================== check_media_ip ======================
[13:29:14] [PASSED] 12.00 Xe_M
[13:29:14] [PASSED] 12.55 Xe_HPM
[13:29:14] [PASSED] 13.00 Xe_LPM+
[13:29:14] [PASSED] 13.01 Xe2_HPM
[13:29:14] [PASSED] 20.00 Xe2_LPM
[13:29:14] [PASSED] 30.00 Xe3_LPM
[13:29:14] [PASSED] 30.02 Xe3_LPM
[13:29:14] [PASSED] 35.00 Xe3p_LPM
[13:29:14] [PASSED] 35.03 Xe3p_HPM
[13:29:14] ================= [PASSED] check_media_ip ==================
[13:29:14] =================== check_platform_desc ===================
[13:29:14] [PASSED] 0x9A60 (TIGERLAKE)
[13:29:14] [PASSED] 0x9A68 (TIGERLAKE)
[13:29:14] [PASSED] 0x9A70 (TIGERLAKE)
[13:29:14] [PASSED] 0x9A40 (TIGERLAKE)
[13:29:14] [PASSED] 0x9A49 (TIGERLAKE)
[13:29:14] [PASSED] 0x9A59 (TIGERLAKE)
[13:29:14] [PASSED] 0x9A78 (TIGERLAKE)
[13:29:14] [PASSED] 0x9AC0 (TIGERLAKE)
[13:29:14] [PASSED] 0x9AC9 (TIGERLAKE)
[13:29:14] [PASSED] 0x9AD9 (TIGERLAKE)
[13:29:14] [PASSED] 0x9AF8 (TIGERLAKE)
[13:29:14] [PASSED] 0x4C80 (ROCKETLAKE)
[13:29:14] [PASSED] 0x4C8A (ROCKETLAKE)
[13:29:14] [PASSED] 0x4C8B (ROCKETLAKE)
[13:29:14] [PASSED] 0x4C8C (ROCKETLAKE)
[13:29:14] [PASSED] 0x4C90 (ROCKETLAKE)
[13:29:14] [PASSED] 0x4C9A (ROCKETLAKE)
[13:29:14] [PASSED] 0x4680 (ALDERLAKE_S)
[13:29:14] [PASSED] 0x4682 (ALDERLAKE_S)
[13:29:14] [PASSED] 0x4688 (ALDERLAKE_S)
[13:29:14] [PASSED] 0x468A (ALDERLAKE_S)
[13:29:14] [PASSED] 0x468B (ALDERLAKE_S)
[13:29:14] [PASSED] 0x4690 (ALDERLAKE_S)
[13:29:14] [PASSED] 0x4692 (ALDERLAKE_S)
[13:29:14] [PASSED] 0x4693 (ALDERLAKE_S)
[13:29:14] [PASSED] 0x46A0 (ALDERLAKE_P)
[13:29:14] [PASSED] 0x46A1 (ALDERLAKE_P)
[13:29:14] [PASSED] 0x46A2 (ALDERLAKE_P)
[13:29:14] [PASSED] 0x46A3 (ALDERLAKE_P)
[13:29:14] [PASSED] 0x46A6 (ALDERLAKE_P)
[13:29:14] [PASSED] 0x46A8 (ALDERLAKE_P)
[13:29:14] [PASSED] 0x46AA (ALDERLAKE_P)
[13:29:14] [PASSED] 0x462A (ALDERLAKE_P)
[13:29:14] [PASSED] 0x4626 (ALDERLAKE_P)
[13:29:14] [PASSED] 0x4628 (ALDERLAKE_P)
[13:29:14] [PASSED] 0x46B0 (ALDERLAKE_P)
[13:29:14] [PASSED] 0x46B1 (ALDERLAKE_P)
[13:29:14] [PASSED] 0x46B2 (ALDERLAKE_P)
[13:29:14] [PASSED] 0x46B3 (ALDERLAKE_P)
[13:29:14] [PASSED] 0x46C0 (ALDERLAKE_P)
[13:29:14] [PASSED] 0x46C1 (ALDERLAKE_P)
[13:29:14] [PASSED] 0x46C2 (ALDERLAKE_P)
[13:29:14] [PASSED] 0x46C3 (ALDERLAKE_P)
[13:29:14] [PASSED] 0x46D0 (ALDERLAKE_N)
[13:29:14] [PASSED] 0x46D1 (ALDERLAKE_N)
[13:29:14] [PASSED] 0x46D2 (ALDERLAKE_N)
[13:29:14] [PASSED] 0x46D3 (ALDERLAKE_N)
[13:29:14] [PASSED] 0x46D4 (ALDERLAKE_N)
[13:29:14] [PASSED] 0xA721 (ALDERLAKE_P)
[13:29:14] [PASSED] 0xA7A1 (ALDERLAKE_P)
[13:29:14] [PASSED] 0xA7A9 (ALDERLAKE_P)
[13:29:14] [PASSED] 0xA7AC (ALDERLAKE_P)
[13:29:14] [PASSED] 0xA7AD (ALDERLAKE_P)
[13:29:14] [PASSED] 0xA720 (ALDERLAKE_P)
[13:29:14] [PASSED] 0xA7A0 (ALDERLAKE_P)
[13:29:14] [PASSED] 0xA7A8 (ALDERLAKE_P)
[13:29:14] [PASSED] 0xA7AA (ALDERLAKE_P)
[13:29:14] [PASSED] 0xA7AB (ALDERLAKE_P)
[13:29:14] [PASSED] 0xA780 (ALDERLAKE_S)
[13:29:14] [PASSED] 0xA781 (ALDERLAKE_S)
[13:29:14] [PASSED] 0xA782 (ALDERLAKE_S)
[13:29:14] [PASSED] 0xA783 (ALDERLAKE_S)
[13:29:14] [PASSED] 0xA788 (ALDERLAKE_S)
[13:29:14] [PASSED] 0xA789 (ALDERLAKE_S)
[13:29:14] [PASSED] 0xA78A (ALDERLAKE_S)
[13:29:14] [PASSED] 0xA78B (ALDERLAKE_S)
[13:29:14] [PASSED] 0x4905 (DG1)
[13:29:14] [PASSED] 0x4906 (DG1)
[13:29:14] [PASSED] 0x4907 (DG1)
[13:29:14] [PASSED] 0x4908 (DG1)
[13:29:14] [PASSED] 0x4909 (DG1)
[13:29:14] [PASSED] 0x56C0 (DG2)
[13:29:14] [PASSED] 0x56C2 (DG2)
[13:29:14] [PASSED] 0x56C1 (DG2)
[13:29:14] [PASSED] 0x7D51 (METEORLAKE)
[13:29:14] [PASSED] 0x7DD1 (METEORLAKE)
[13:29:14] [PASSED] 0x7D41 (METEORLAKE)
[13:29:14] [PASSED] 0x7D67 (METEORLAKE)
[13:29:14] [PASSED] 0xB640 (METEORLAKE)
[13:29:14] [PASSED] 0x56A0 (DG2)
[13:29:14] [PASSED] 0x56A1 (DG2)
[13:29:14] [PASSED] 0x56A2 (DG2)
[13:29:14] [PASSED] 0x56BE (DG2)
[13:29:14] [PASSED] 0x56BF (DG2)
[13:29:14] [PASSED] 0x5690 (DG2)
[13:29:14] [PASSED] 0x5691 (DG2)
[13:29:14] [PASSED] 0x5692 (DG2)
[13:29:14] [PASSED] 0x56A5 (DG2)
[13:29:14] [PASSED] 0x56A6 (DG2)
[13:29:14] [PASSED] 0x56B0 (DG2)
[13:29:14] [PASSED] 0x56B1 (DG2)
[13:29:14] [PASSED] 0x56BA (DG2)
[13:29:14] [PASSED] 0x56BB (DG2)
[13:29:14] [PASSED] 0x56BC (DG2)
[13:29:14] [PASSED] 0x56BD (DG2)
[13:29:14] [PASSED] 0x5693 (DG2)
[13:29:14] [PASSED] 0x5694 (DG2)
[13:29:14] [PASSED] 0x5695 (DG2)
[13:29:14] [PASSED] 0x56A3 (DG2)
[13:29:14] [PASSED] 0x56A4 (DG2)
[13:29:14] [PASSED] 0x56B2 (DG2)
[13:29:14] [PASSED] 0x56B3 (DG2)
[13:29:14] [PASSED] 0x5696 (DG2)
[13:29:14] [PASSED] 0x5697 (DG2)
[13:29:14] [PASSED] 0xB69 (PVC)
[13:29:14] [PASSED] 0xB6E (PVC)
[13:29:14] [PASSED] 0xBD4 (PVC)
[13:29:14] [PASSED] 0xBD5 (PVC)
[13:29:14] [PASSED] 0xBD6 (PVC)
[13:29:14] [PASSED] 0xBD7 (PVC)
[13:29:14] [PASSED] 0xBD8 (PVC)
[13:29:14] [PASSED] 0xBD9 (PVC)
[13:29:14] [PASSED] 0xBDA (PVC)
[13:29:14] [PASSED] 0xBDB (PVC)
[13:29:14] [PASSED] 0xBE0 (PVC)
[13:29:14] [PASSED] 0xBE1 (PVC)
[13:29:14] [PASSED] 0xBE5 (PVC)
[13:29:14] [PASSED] 0x7D40 (METEORLAKE)
[13:29:14] [PASSED] 0x7D45 (METEORLAKE)
[13:29:14] [PASSED] 0x7D55 (METEORLAKE)
[13:29:14] [PASSED] 0x7D60 (METEORLAKE)
[13:29:14] [PASSED] 0x7DD5 (METEORLAKE)
[13:29:14] [PASSED] 0x6420 (LUNARLAKE)
[13:29:14] [PASSED] 0x64A0 (LUNARLAKE)
[13:29:14] [PASSED] 0x64B0 (LUNARLAKE)
[13:29:14] [PASSED] 0xE202 (BATTLEMAGE)
[13:29:14] [PASSED] 0xE209 (BATTLEMAGE)
[13:29:14] [PASSED] 0xE20B (BATTLEMAGE)
[13:29:14] [PASSED] 0xE20C (BATTLEMAGE)
[13:29:14] [PASSED] 0xE20D (BATTLEMAGE)
[13:29:14] [PASSED] 0xE210 (BATTLEMAGE)
[13:29:14] [PASSED] 0xE211 (BATTLEMAGE)
[13:29:14] [PASSED] 0xE212 (BATTLEMAGE)
[13:29:14] [PASSED] 0xE216 (BATTLEMAGE)
[13:29:14] [PASSED] 0xE220 (BATTLEMAGE)
[13:29:14] [PASSED] 0xE221 (BATTLEMAGE)
[13:29:14] [PASSED] 0xE222 (BATTLEMAGE)
[13:29:14] [PASSED] 0xE223 (BATTLEMAGE)
[13:29:14] [PASSED] 0xB080 (PANTHERLAKE)
[13:29:14] [PASSED] 0xB081 (PANTHERLAKE)
[13:29:14] [PASSED] 0xB082 (PANTHERLAKE)
[13:29:14] [PASSED] 0xB083 (PANTHERLAKE)
[13:29:14] [PASSED] 0xB084 (PANTHERLAKE)
[13:29:14] [PASSED] 0xB085 (PANTHERLAKE)
[13:29:14] [PASSED] 0xB086 (PANTHERLAKE)
[13:29:14] [PASSED] 0xB087 (PANTHERLAKE)
[13:29:14] [PASSED] 0xB08F (PANTHERLAKE)
[13:29:14] [PASSED] 0xB090 (PANTHERLAKE)
[13:29:14] [PASSED] 0xB0A0 (PANTHERLAKE)
[13:29:14] [PASSED] 0xB0B0 (PANTHERLAKE)
[13:29:14] [PASSED] 0xFD80 (PANTHERLAKE)
[13:29:14] [PASSED] 0xFD81 (PANTHERLAKE)
[13:29:14] [PASSED] 0xD740 (NOVALAKE_S)
[13:29:14] [PASSED] 0xD741 (NOVALAKE_S)
[13:29:14] [PASSED] 0xD742 (NOVALAKE_S)
[13:29:14] [PASSED] 0xD743 (NOVALAKE_S)
[13:29:14] [PASSED] 0xD745 (NOVALAKE_S)
[13:29:14] [PASSED] 0xD74A (NOVALAKE_S)
[13:29:14] [PASSED] 0xD74B (NOVALAKE_S)
[13:29:14] [PASSED] 0x674C (CRESCENTISLAND)
[13:29:14] [PASSED] 0x674D (CRESCENTISLAND)
[13:29:14] [PASSED] 0x674E (CRESCENTISLAND)
[13:29:14] [PASSED] 0x674F (CRESCENTISLAND)
[13:29:14] [PASSED] 0x6750 (CRESCENTISLAND)
[13:29:14] [PASSED] 0xD750 (NOVALAKE_P)
[13:29:14] [PASSED] 0xD751 (NOVALAKE_P)
[13:29:14] [PASSED] 0xD752 (NOVALAKE_P)
[13:29:14] [PASSED] 0xD753 (NOVALAKE_P)
[13:29:14] [PASSED] 0xD754 (NOVALAKE_P)
[13:29:14] [PASSED] 0xD755 (NOVALAKE_P)
[13:29:14] [PASSED] 0xD756 (NOVALAKE_P)
[13:29:14] [PASSED] 0xD757 (NOVALAKE_P)
[13:29:14] [PASSED] 0xD75F (NOVALAKE_P)
[13:29:14] =============== [PASSED] check_platform_desc ===============
[13:29:14] ===================== [PASSED] xe_pci ======================
[13:29:14] ============= xe_rtp_tables_test (5 subtests) ==============
[13:29:14] ================== xe_rtp_table_gt_test ===================
[13:29:14] [PASSED] gt_was/14011060649
[13:29:14] [PASSED] gt_was/14011059788
[13:29:14] [PASSED] gt_was/14015795083
[13:29:14] [PASSED] gt_was/16021867713
[13:29:14] [PASSED] gt_was/14019449301
[13:29:14] [PASSED] gt_was/16028005424
[13:29:14] [PASSED] gt_was/14026578760
[13:29:14] [PASSED] gt_was/1409420604
[13:29:14] [PASSED] gt_was/1408615072
[13:29:14] [PASSED] gt_was/22010523718
[13:29:14] [PASSED] gt_was/14011006942
[13:29:14] [PASSED] gt_was/14014830051
[13:29:14] [PASSED] gt_was/18018781329
[13:29:14] [PASSED] gt_was/1509235366
[13:29:14] [PASSED] gt_was/18018781329
[13:29:14] [PASSED] gt_was/16016694945
[13:29:14] [PASSED] gt_was/14018575942
[13:29:14] [PASSED] gt_was/22016670082
[13:29:14] [PASSED] gt_was/22016670082
[13:29:14] [PASSED] gt_was/14017421178
[13:29:14] [PASSED] gt_was/16025250150
[13:29:14] [PASSED] gt_was/14021871409
[13:29:14] [PASSED] gt_was/16021865536
[13:29:14] [PASSED] gt_was/14021486841
[13:29:14] [PASSED] gt_was/14025160223
[13:29:14] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[13:29:14] [PASSED] gt_was/14025635424
[13:29:14] [PASSED] gt_was/16028005424
[13:29:14] ============== [PASSED] xe_rtp_table_gt_test ===============
[13:29:14] ================== xe_rtp_table_gt_test ===================
[13:29:14] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[13:29:14] [PASSED] gt_tunings/Tuning: 32B Access Enable
[13:29:14] [PASSED] gt_tunings/Tuning: L3 cache
[13:29:14] [PASSED] gt_tunings/Tuning: L3 cache - media
[13:29:14] [PASSED] gt_tunings/Tuning: Compression Overfetch
[13:29:14] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[13:29:14] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[13:29:14] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[13:29:14] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[13:29:14] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[13:29:14] [PASSED] gt_tunings/Tuning: Stateless compression control
[13:29:14] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[13:29:14] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[13:29:14] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[13:29:14] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[13:29:14] ============== [PASSED] xe_rtp_table_gt_test ===============
[13:29:14] ================== xe_rtp_table_oob_test ==================
[13:29:14] [PASSED] oob_was/1607983814
[13:29:14] [PASSED] oob_was/16010904313
[13:29:14] [PASSED] oob_was/18022495364
[13:29:14] [PASSED] oob_was/22012773006
[13:29:14] [PASSED] oob_was/14014475959
[13:29:14] [PASSED] oob_was/22011391025
[13:29:14] [PASSED] oob_was/22012727170
[13:29:14] [PASSED] oob_was/22012727685
[13:29:14] [PASSED] oob_was/22016596838
[13:29:14] [PASSED] oob_was/18020744125
[13:29:14] [PASSED] oob_was/1409600907
[13:29:14] [PASSED] oob_was/22014953428
[13:29:14] [PASSED] oob_was/16017236439
[13:29:14] [PASSED] oob_was/14019821291
[13:29:14] [PASSED] oob_was/14015076503
[13:29:14] [PASSED] oob_was/14018913170
[13:29:14] [PASSED] oob_was/14018094691
[13:29:14] [PASSED] oob_was/18024947630
[13:29:14] [PASSED] oob_was/16022287689
[13:29:14] [PASSED] oob_was/13011645652
[13:29:14] [PASSED] oob_was/14022293748
[13:29:14] [PASSED] oob_was/22019794406
[13:29:14] [PASSED] oob_was/22019338487
[13:29:14] [PASSED] oob_was/16023588340
[13:29:14] [PASSED] oob_was/14019789679
[13:29:14] [PASSED] oob_was/14022866841
[13:29:14] [PASSED] oob_was/16021333562
[13:29:14] [PASSED] oob_was/14016712196
[13:29:14] [PASSED] oob_was/14015568240
[13:29:14] [PASSED] oob_was/18013179988
[13:29:14] [PASSED] oob_was/1508761755
[13:29:14] [PASSED] oob_was/16023105232
[13:29:14] [PASSED] oob_was/16026508708
[13:29:14] [PASSED] oob_was/14020001231
[13:29:14] [PASSED] oob_was/16023683509
[13:29:14] [PASSED] oob_was/14025515070
[13:29:14] [PASSED] oob_was/15015404425_disable
[13:29:14] [PASSED] oob_was/16026007364
[13:29:14] [PASSED] oob_was/14020316580
[13:29:14] [PASSED] oob_was/14025883347
[13:29:14] [PASSED] oob_was/16029380221
[13:29:14] [PASSED] oob_was/22022079272
[13:29:14] [PASSED] oob_was/16029897822
[13:29:14] ============== [PASSED] xe_rtp_table_oob_test ==============
[13:29:14] ================ xe_rtp_table_dev_oob_test ================
[13:29:14] [PASSED] device_oob_was/22010954014
[13:29:14] [PASSED] device_oob_was/15015404425
[13:29:14] [PASSED] device_oob_was/22019338487_display
[13:29:14] [PASSED] device_oob_was/14022085890
[13:29:14] [PASSED] device_oob_was/14026539277
[13:29:14] [PASSED] device_oob_was/14026633728
[13:29:14] [PASSED] device_oob_was/14026746987
[13:29:14] [PASSED] device_oob_was/14026779378
[13:29:14] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[13:29:14] ========== xe_rtp_table_missing_upper_bound_test ==========
[13:29:14] [PASSED] register_whitelist/WaAllowPMDepthAndInvocationCountAccessFromUMD, 1408556865
[13:29:14] [PASSED] register_whitelist/1508744258, 14012131227, 1808121037
[13:29:14] [PASSED] register_whitelist/1806527549
[13:29:14] [PASSED] register_whitelist/allow_read_ctx_timestamp
[13:29:14] [PASSED] register_whitelist/allow_read_queue_timestamp
[13:29:14] [PASSED] register_whitelist/16014440446
[13:29:14] [PASSED] register_whitelist/16017236439
[13:29:14] [PASSED] register_whitelist/16020183090
[13:29:14] [PASSED] register_whitelist/14024997852
[13:29:14] [PASSED] register_whitelist/14024997852
[13:29:14] ====== [PASSED] xe_rtp_table_missing_upper_bound_test ======
[13:29:14] =============== [PASSED] xe_rtp_tables_test ================
[13:29:14] =================== xe_rtp (3 subtests) ====================
[13:29:14] =================== xe_rtp_rules_tests ====================
[13:29:14] [PASSED] no
[13:29:14] [PASSED] yes
[13:29:14] [PASSED] no-and-no
[13:29:14] [PASSED] no-and-yes
[13:29:14] [PASSED] yes-and-no
[13:29:14] [PASSED] yes-and-yes
[13:29:14] [PASSED] no-or-no
[13:29:14] [PASSED] no-or-yes
[13:29:14] [PASSED] yes-or-no
[13:29:14] [PASSED] yes-or-yes
[13:29:14] [PASSED] no-yes-or-yes-no
[13:29:14] [PASSED] no-yes-or-yes-yes
[13:29:14] [PASSED] yes-yes-or-no-yes
[13:29:14] [PASSED] yes-yes-or-yes-yes
[13:29:14] [PASSED] no-no-or-yes-or-no
[13:29:14] [PASSED] or
[13:29:14] [PASSED] or-yes
[13:29:14] [PASSED] or-no
[13:29:14] [PASSED] yes-or
[13:29:14] [PASSED] no-or
[13:29:14] [PASSED] no-or-or-yes
[13:29:14] [PASSED] yes-or-or-no
[13:29:14] [PASSED] no-or-or-no
[13:29:14] [PASSED] missing-context-engine-class
[13:29:14] [PASSED] missing-context-engine-class-or-yes
[13:29:14] [PASSED] missing-context-engine-class-or-or-yes
[13:29:14] =============== [PASSED] xe_rtp_rules_tests ================
[13:29:14] =============== xe_rtp_process_to_sr_tests ================
[13:29:14] [PASSED] coalesce-same-reg
[13:29:14] [PASSED] coalesce-same-reg-literal-and-func
[13:29:14] [PASSED] no-match-no-add
[13:29:14] [PASSED] two-regs-two-entries
[13:29:14] [PASSED] clr-one-set-other
[13:29:14] [PASSED] set-field
[13:29:14] [PASSED] conflict-duplicate
[13:29:14] [PASSED] conflict-not-disjoint
[13:29:14] [PASSED] conflict-not-disjoint-literal-and-func
[13:29:14] [PASSED] conflict-reg-type
[13:29:14] [PASSED] bad-mcr-reg-forced-to-regular
[13:29:14] [PASSED] bad-regular-reg-forced-to-mcr
[13:29:14] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[13:29:14] ================== xe_rtp_process_tests ===================
[13:29:14] [PASSED] active1
[13:29:14] [PASSED] active2
[13:29:14] [PASSED] active-inactive
[13:29:14] [PASSED] inactive-active
[13:29:14] [PASSED] inactive-active-inactive
[13:29:14] [PASSED] inactive-inactive-inactive
[13:29:14] ============== [PASSED] xe_rtp_process_tests ===============
[13:29:14] ===================== [PASSED] xe_rtp ======================
[13:29:14] ==================== xe_wa (1 subtest) =====================
[13:29:14] ======================== xe_wa_gt =========================
[13:29:14] [PASSED] TIGERLAKE B0
[13:29:14] [PASSED] DG1 A0
[13:29:14] [PASSED] DG1 B0
[13:29:14] [PASSED] ALDERLAKE_S A0
[13:29:14] [PASSED] ALDERLAKE_S B0
[13:29:14] [PASSED] ALDERLAKE_S C0
[13:29:14] [PASSED] ALDERLAKE_S D0
[13:29:14] [PASSED] ALDERLAKE_P A0
[13:29:14] [PASSED] ALDERLAKE_P B0
[13:29:14] [PASSED] ALDERLAKE_P C0
[13:29:14] [PASSED] ALDERLAKE_S RPLS D0
[13:29:14] [PASSED] ALDERLAKE_P RPLU E0
[13:29:14] [PASSED] DG2 G10 C0
[13:29:14] [PASSED] DG2 G11 B1
[13:29:14] [PASSED] DG2 G12 A1
[13:29:14] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[13:29:14] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[13:29:14] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[13:29:14] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[13:29:14] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[13:29:14] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[13:29:14] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[13:29:14] ==================== [PASSED] xe_wa_gt =====================
[13:29:14] ====================== [PASSED] xe_wa ======================
[13:29:14] ============================================================
[13:29:14] Testing complete. Ran 741 tests: passed: 723, skipped: 18
[13:29:14] Elapsed time: 37.303s total, 4.403s configuring, 32.231s building, 0.646s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[13:29:15] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:29:16] 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
[13:29:41] Starting KUnit Kernel (1/1)...
[13:29:41] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:29:41] ============ drm_test_pick_cmdline (2 subtests) ============
[13:29:41] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[13:29:41] =============== drm_test_pick_cmdline_named ===============
[13:29:41] [PASSED] NTSC
[13:29:41] [PASSED] NTSC-J
[13:29:41] [PASSED] PAL
[13:29:41] [PASSED] PAL-M
[13:29:41] =========== [PASSED] drm_test_pick_cmdline_named ===========
[13:29:41] ============== [PASSED] drm_test_pick_cmdline ==============
[13:29:41] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[13:29:41] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[13:29:41] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[13:29:41] =========== drm_validate_clone_mode (2 subtests) ===========
[13:29:41] ============== drm_test_check_in_clone_mode ===============
[13:29:41] [PASSED] in_clone_mode
[13:29:41] [PASSED] not_in_clone_mode
[13:29:41] ========== [PASSED] drm_test_check_in_clone_mode ===========
[13:29:41] =============== drm_test_check_valid_clones ===============
[13:29:41] [PASSED] not_in_clone_mode
[13:29:41] [PASSED] valid_clone
[13:29:41] [PASSED] invalid_clone
[13:29:41] =========== [PASSED] drm_test_check_valid_clones ===========
[13:29:41] ============= [PASSED] drm_validate_clone_mode =============
[13:29:41] ============= drm_validate_modeset (1 subtest) =============
[13:29:41] [PASSED] drm_test_check_connector_changed_modeset
[13:29:41] ============== [PASSED] drm_validate_modeset ===============
[13:29:41] ====== drm_test_bridge_get_current_state (1 subtest) =======
[13:29:41] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[13:29:41] ======== [PASSED] drm_test_bridge_get_current_state ========
[13:29:41] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[13:29:41] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[13:29:41] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[13:29:41] [PASSED] drm_test_drm_bridge_helper_hdmi_output_bus_fmts
[13:29:41] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[13:29:41] ============== drm_bridge_alloc (2 subtests) ===============
[13:29:41] [PASSED] drm_test_drm_bridge_alloc_basic
[13:29:41] [PASSED] drm_test_drm_bridge_alloc_get_put
[13:29:41] ================ [PASSED] drm_bridge_alloc =================
[13:29:41] ============= drm_bridge_bus_fmt (5 subtests) ==============
[13:29:41] [PASSED] drm_test_bridge_rgb_yuv_rgb
[13:29:41] [PASSED] drm_test_bridge_must_convert_to_yuv444
[13:29:41] [PASSED] drm_test_bridge_hdmi_auto_rgb
[13:29:41] [PASSED] drm_test_bridge_auto_first
[13:29:41] [PASSED] drm_test_bridge_rgb_yuv_no_path
[13:29:41] =============== [PASSED] drm_bridge_bus_fmt ================
[13:29:41] ============= drm_cmdline_parser (40 subtests) =============
[13:29:41] [PASSED] drm_test_cmdline_force_d_only
[13:29:41] [PASSED] drm_test_cmdline_force_D_only_dvi
[13:29:41] [PASSED] drm_test_cmdline_force_D_only_hdmi
[13:29:41] [PASSED] drm_test_cmdline_force_D_only_not_digital
[13:29:41] [PASSED] drm_test_cmdline_force_e_only
[13:29:41] [PASSED] drm_test_cmdline_res
[13:29:41] [PASSED] drm_test_cmdline_res_vesa
[13:29:41] [PASSED] drm_test_cmdline_res_vesa_rblank
[13:29:41] [PASSED] drm_test_cmdline_res_rblank
[13:29:41] [PASSED] drm_test_cmdline_res_bpp
[13:29:41] [PASSED] drm_test_cmdline_res_refresh
[13:29:41] [PASSED] drm_test_cmdline_res_bpp_refresh
[13:29:41] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[13:29:41] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[13:29:41] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[13:29:41] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[13:29:41] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[13:29:41] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[13:29:41] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[13:29:41] [PASSED] drm_test_cmdline_res_margins_force_on
[13:29:41] [PASSED] drm_test_cmdline_res_vesa_margins
[13:29:41] [PASSED] drm_test_cmdline_name
[13:29:41] [PASSED] drm_test_cmdline_name_bpp
[13:29:41] [PASSED] drm_test_cmdline_name_option
[13:29:41] [PASSED] drm_test_cmdline_name_bpp_option
[13:29:41] [PASSED] drm_test_cmdline_rotate_0
[13:29:41] [PASSED] drm_test_cmdline_rotate_90
[13:29:41] [PASSED] drm_test_cmdline_rotate_180
[13:29:41] [PASSED] drm_test_cmdline_rotate_270
[13:29:41] [PASSED] drm_test_cmdline_hmirror
[13:29:41] [PASSED] drm_test_cmdline_vmirror
[13:29:41] [PASSED] drm_test_cmdline_margin_options
[13:29:41] [PASSED] drm_test_cmdline_multiple_options
[13:29:41] [PASSED] drm_test_cmdline_bpp_extra_and_option
[13:29:41] [PASSED] drm_test_cmdline_extra_and_option
[13:29:41] [PASSED] drm_test_cmdline_freestanding_options
[13:29:41] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[13:29:41] [PASSED] drm_test_cmdline_panel_orientation
[13:29:41] ================ drm_test_cmdline_invalid =================
[13:29:41] [PASSED] margin_only
[13:29:41] [PASSED] interlace_only
[13:29:41] [PASSED] res_missing_x
[13:29:41] [PASSED] res_missing_y
[13:29:41] [PASSED] res_bad_y
[13:29:41] [PASSED] res_missing_y_bpp
[13:29:41] [PASSED] res_bad_bpp
[13:29:41] [PASSED] res_bad_refresh
[13:29:41] [PASSED] res_bpp_refresh_force_on_off
[13:29:41] [PASSED] res_invalid_mode
[13:29:41] [PASSED] res_bpp_wrong_place_mode
[13:29:41] [PASSED] name_bpp_refresh
[13:29:41] [PASSED] name_refresh
[13:29:41] [PASSED] name_refresh_wrong_mode
[13:29:41] [PASSED] name_refresh_invalid_mode
[13:29:41] [PASSED] rotate_multiple
[13:29:41] [PASSED] rotate_invalid_val
[13:29:41] [PASSED] rotate_truncated
[13:29:41] [PASSED] invalid_option
[13:29:41] [PASSED] invalid_tv_option
[13:29:41] [PASSED] truncated_tv_option
[13:29:41] ============ [PASSED] drm_test_cmdline_invalid =============
[13:29:41] =============== drm_test_cmdline_tv_options ===============
[13:29:41] [PASSED] NTSC
[13:29:41] [PASSED] NTSC_443
[13:29:41] [PASSED] NTSC_J
[13:29:41] [PASSED] PAL
[13:29:41] [PASSED] PAL_M
[13:29:41] [PASSED] PAL_N
[13:29:41] [PASSED] SECAM
[13:29:41] [PASSED] MONO_525
[13:29:41] [PASSED] MONO_625
[13:29:41] =========== [PASSED] drm_test_cmdline_tv_options ===========
[13:29:41] =============== [PASSED] drm_cmdline_parser ================
[13:29:41] ========== drmm_connector_hdmi_init (20 subtests) ==========
[13:29:41] [PASSED] drm_test_connector_hdmi_init_valid
[13:29:41] [PASSED] drm_test_connector_hdmi_init_bpc_8
[13:29:41] [PASSED] drm_test_connector_hdmi_init_bpc_10
[13:29:41] [PASSED] drm_test_connector_hdmi_init_bpc_12
[13:29:41] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[13:29:41] [PASSED] drm_test_connector_hdmi_init_bpc_null
[13:29:41] [PASSED] drm_test_connector_hdmi_init_formats_empty
[13:29:41] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[13:29:41] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[13:29:41] [PASSED] supported_formats=0x9 yuv420_allowed=1
[13:29:41] [PASSED] supported_formats=0x9 yuv420_allowed=0
[13:29:41] [PASSED] supported_formats=0x5 yuv420_allowed=1
[13:29:41] [PASSED] supported_formats=0x5 yuv420_allowed=0
[13:29:41] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[13:29:41] [PASSED] drm_test_connector_hdmi_init_null_ddc
[13:29:41] [PASSED] drm_test_connector_hdmi_init_null_product
[13:29:41] [PASSED] drm_test_connector_hdmi_init_null_vendor
[13:29:41] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[13:29:41] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[13:29:41] [PASSED] drm_test_connector_hdmi_init_product_valid
[13:29:41] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[13:29:41] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[13:29:41] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[13:29:41] ========= drm_test_connector_hdmi_init_type_valid =========
[13:29:41] [PASSED] HDMI-A
[13:29:41] [PASSED] HDMI-B
[13:29:41] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[13:29:41] ======== drm_test_connector_hdmi_init_type_invalid ========
[13:29:41] [PASSED] Unknown
[13:29:41] [PASSED] VGA
[13:29:41] [PASSED] DVI-I
[13:29:41] [PASSED] DVI-D
[13:29:41] [PASSED] DVI-A
[13:29:41] [PASSED] Composite
[13:29:41] [PASSED] SVIDEO
[13:29:41] [PASSED] LVDS
[13:29:41] [PASSED] Component
[13:29:41] [PASSED] DIN
[13:29:41] [PASSED] DP
[13:29:41] [PASSED] TV
[13:29:41] [PASSED] eDP
[13:29:41] [PASSED] Virtual
[13:29:41] [PASSED] DSI
[13:29:41] [PASSED] DPI
[13:29:41] [PASSED] Writeback
[13:29:41] [PASSED] SPI
[13:29:41] [PASSED] USB
[13:29:41] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[13:29:41] ============ [PASSED] drmm_connector_hdmi_init =============
[13:29:41] ============= drmm_connector_init (3 subtests) =============
[13:29:41] [PASSED] drm_test_drmm_connector_init
[13:29:41] [PASSED] drm_test_drmm_connector_init_null_ddc
[13:29:41] ========= drm_test_drmm_connector_init_type_valid =========
[13:29:41] [PASSED] Unknown
[13:29:41] [PASSED] VGA
[13:29:41] [PASSED] DVI-I
[13:29:41] [PASSED] DVI-D
[13:29:41] [PASSED] DVI-A
[13:29:41] [PASSED] Composite
[13:29:41] [PASSED] SVIDEO
[13:29:41] [PASSED] LVDS
[13:29:41] [PASSED] Component
[13:29:41] [PASSED] DIN
[13:29:41] [PASSED] DP
[13:29:41] [PASSED] HDMI-A
[13:29:41] [PASSED] HDMI-B
[13:29:41] [PASSED] TV
[13:29:41] [PASSED] eDP
[13:29:41] [PASSED] Virtual
[13:29:41] [PASSED] DSI
[13:29:41] [PASSED] DPI
[13:29:41] [PASSED] Writeback
[13:29:41] [PASSED] SPI
[13:29:41] [PASSED] USB
[13:29:41] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[13:29:41] =============== [PASSED] drmm_connector_init ===============
[13:29:41] ========= drm_connector_dynamic_init (6 subtests) ==========
[13:29:41] [PASSED] drm_test_drm_connector_dynamic_init
[13:29:41] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[13:29:41] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[13:29:41] [PASSED] drm_test_drm_connector_dynamic_init_properties
[13:29:41] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[13:29:41] [PASSED] Unknown
[13:29:41] [PASSED] VGA
[13:29:41] [PASSED] DVI-I
[13:29:41] [PASSED] DVI-D
[13:29:41] [PASSED] DVI-A
[13:29:41] [PASSED] Composite
[13:29:41] [PASSED] SVIDEO
[13:29:41] [PASSED] LVDS
[13:29:41] [PASSED] Component
[13:29:41] [PASSED] DIN
[13:29:41] [PASSED] DP
[13:29:41] [PASSED] HDMI-A
[13:29:41] [PASSED] HDMI-B
[13:29:41] [PASSED] TV
[13:29:41] [PASSED] eDP
[13:29:41] [PASSED] Virtual
[13:29:41] [PASSED] DSI
[13:29:41] [PASSED] DPI
[13:29:41] [PASSED] Writeback
[13:29:41] [PASSED] SPI
[13:29:41] [PASSED] USB
[13:29:41] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[13:29:41] ======== drm_test_drm_connector_dynamic_init_name =========
[13:29:41] [PASSED] Unknown
[13:29:41] [PASSED] VGA
[13:29:41] [PASSED] DVI-I
[13:29:41] [PASSED] DVI-D
[13:29:41] [PASSED] DVI-A
[13:29:41] [PASSED] Composite
[13:29:41] [PASSED] SVIDEO
[13:29:41] [PASSED] LVDS
[13:29:41] [PASSED] Component
[13:29:41] [PASSED] DIN
[13:29:41] [PASSED] DP
[13:29:41] [PASSED] HDMI-A
[13:29:41] [PASSED] HDMI-B
[13:29:41] [PASSED] TV
[13:29:41] [PASSED] eDP
[13:29:41] [PASSED] Virtual
[13:29:41] [PASSED] DSI
[13:29:41] [PASSED] DPI
[13:29:41] [PASSED] Writeback
[13:29:41] [PASSED] SPI
[13:29:41] [PASSED] USB
[13:29:41] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[13:29:41] =========== [PASSED] drm_connector_dynamic_init ============
[13:29:41] ==== drm_connector_dynamic_register_early (4 subtests) =====
[13:29:41] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[13:29:41] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[13:29:41] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[13:29:41] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[13:29:41] ====== [PASSED] drm_connector_dynamic_register_early =======
[13:29:41] ======= drm_connector_dynamic_register (7 subtests) ========
[13:29:41] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[13:29:41] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[13:29:41] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[13:29:41] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[13:29:41] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[13:29:41] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[13:29:41] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[13:29:41] ========= [PASSED] drm_connector_dynamic_register ==========
[13:29:41] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[13:29:41] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[13:29:41] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[13:29:41] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[13:29:41] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[13:29:41] ========== drm_test_get_tv_mode_from_name_valid ===========
[13:29:41] [PASSED] NTSC
[13:29:41] [PASSED] NTSC-443
[13:29:41] [PASSED] NTSC-J
[13:29:41] [PASSED] PAL
[13:29:41] [PASSED] PAL-M
[13:29:41] [PASSED] PAL-N
[13:29:41] [PASSED] SECAM
[13:29:41] [PASSED] Mono
[13:29:41] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[13:29:41] [PASSED] drm_test_get_tv_mode_from_name_truncated
[13:29:41] ============ [PASSED] drm_get_tv_mode_from_name ============
[13:29:41] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[13:29:41] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[13:29:41] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[13:29:41] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[13:29:41] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[13:29:41] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[13:29:41] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[13:29:41] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[13:29:41] [PASSED] VIC 96
[13:29:41] [PASSED] VIC 97
[13:29:41] [PASSED] VIC 101
[13:29:41] [PASSED] VIC 102
[13:29:41] [PASSED] VIC 106
[13:29:41] [PASSED] VIC 107
[13:29:41] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[13:29:41] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[13:29:41] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[13:29:41] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[13:29:41] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[13:29:41] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[13:29:41] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[13:29:41] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[13:29:41] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[13:29:41] [PASSED] Automatic
[13:29:41] [PASSED] Full
[13:29:41] [PASSED] Limited 16:235
[13:29:41] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[13:29:41] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[13:29:41] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[13:29:41] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[13:29:41] === drm_test_drm_hdmi_connector_get_output_format_name ====
[13:29:41] [PASSED] RGB
[13:29:41] [PASSED] YUV 4:2:0
[13:29:41] [PASSED] YUV 4:2:2
[13:29:41] [PASSED] YUV 4:4:4
[13:29:41] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[13:29:41] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[13:29:41] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[13:29:41] ============= drm_damage_helper (21 subtests) ==============
[13:29:41] [PASSED] drm_test_damage_iter_no_damage
[13:29:41] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[13:29:41] [PASSED] drm_test_damage_iter_no_damage_src_moved
[13:29:41] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[13:29:41] [PASSED] drm_test_damage_iter_no_damage_not_visible
[13:29:41] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[13:29:41] [PASSED] drm_test_damage_iter_no_damage_no_fb
[13:29:41] [PASSED] drm_test_damage_iter_simple_damage
[13:29:41] [PASSED] drm_test_damage_iter_single_damage
[13:29:41] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[13:29:41] [PASSED] drm_test_damage_iter_single_damage_outside_src
[13:29:41] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[13:29:41] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[13:29:41] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[13:29:41] [PASSED] drm_test_damage_iter_single_damage_src_moved
[13:29:41] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[13:29:41] [PASSED] drm_test_damage_iter_damage
[13:29:41] [PASSED] drm_test_damage_iter_damage_one_intersect
[13:29:41] [PASSED] drm_test_damage_iter_damage_one_outside
[13:29:41] [PASSED] drm_test_damage_iter_damage_src_moved
[13:29:41] [PASSED] drm_test_damage_iter_damage_not_visible
[13:29:41] ================ [PASSED] drm_damage_helper ================
[13:29:41] ============== drm_dp_mst_helper (3 subtests) ==============
[13:29:41] ============== drm_test_dp_mst_calc_pbn_mode ==============
[13:29:41] [PASSED] Clock 154000 BPP 30 DSC disabled
[13:29:41] [PASSED] Clock 234000 BPP 30 DSC disabled
[13:29:41] [PASSED] Clock 297000 BPP 24 DSC disabled
[13:29:41] [PASSED] Clock 332880 BPP 24 DSC enabled
[13:29:41] [PASSED] Clock 324540 BPP 24 DSC enabled
[13:29:41] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[13:29:41] ============== drm_test_dp_mst_calc_pbn_div ===============
[13:29:41] [PASSED] Link rate 2000000 lane count 4
[13:29:41] [PASSED] Link rate 2000000 lane count 2
[13:29:41] [PASSED] Link rate 2000000 lane count 1
[13:29:41] [PASSED] Link rate 1350000 lane count 4
[13:29:41] [PASSED] Link rate 1350000 lane count 2
[13:29:41] [PASSED] Link rate 1350000 lane count 1
[13:29:41] [PASSED] Link rate 1000000 lane count 4
[13:29:41] [PASSED] Link rate 1000000 lane count 2
[13:29:41] [PASSED] Link rate 1000000 lane count 1
[13:29:41] [PASSED] Link rate 810000 lane count 4
[13:29:41] [PASSED] Link rate 810000 lane count 2
[13:29:41] [PASSED] Link rate 810000 lane count 1
[13:29:41] [PASSED] Link rate 540000 lane count 4
[13:29:41] [PASSED] Link rate 540000 lane count 2
[13:29:41] [PASSED] Link rate 540000 lane count 1
[13:29:41] [PASSED] Link rate 270000 lane count 4
[13:29:41] [PASSED] Link rate 270000 lane count 2
[13:29:41] [PASSED] Link rate 270000 lane count 1
[13:29:41] [PASSED] Link rate 162000 lane count 4
[13:29:41] [PASSED] Link rate 162000 lane count 2
[13:29:41] [PASSED] Link rate 162000 lane count 1
[13:29:41] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[13:29:41] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[13:29:41] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[13:29:41] [PASSED] DP_POWER_UP_PHY with port number
[13:29:41] [PASSED] DP_POWER_DOWN_PHY with port number
[13:29:41] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[13:29:41] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[13:29:41] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[13:29:41] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[13:29:41] [PASSED] DP_QUERY_PAYLOAD with port number
[13:29:41] [PASSED] DP_QUERY_PAYLOAD with VCPI
[13:29:41] [PASSED] DP_REMOTE_DPCD_READ with port number
[13:29:41] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[13:29:41] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[13:29:41] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[13:29:41] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[13:29:41] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[13:29:41] [PASSED] DP_REMOTE_I2C_READ with port number
[13:29:41] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[13:29:41] [PASSED] DP_REMOTE_I2C_READ with transactions array
[13:29:41] [PASSED] DP_REMOTE_I2C_WRITE with port number
[13:29:41] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[13:29:41] [PASSED] DP_REMOTE_I2C_WRITE with data array
[13:29:41] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[13:29:41] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[13:29:41] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[13:29:41] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[13:29:41] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[13:29:41] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[13:29:41] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[13:29:41] ================ [PASSED] drm_dp_mst_helper ================
[13:29:41] ================== drm_exec (7 subtests) ===================
[13:29:41] [PASSED] sanitycheck
[13:29:41] [PASSED] test_lock
[13:29:41] [PASSED] test_lock_unlock
[13:29:41] [PASSED] test_duplicates
[13:29:41] [PASSED] test_prepare
[13:29:41] [PASSED] test_prepare_array
[13:29:41] [PASSED] test_multiple_loops
[13:29:41] ==================== [PASSED] drm_exec =====================
[13:29:41] =========== drm_format_helper_test (17 subtests) ===========
[13:29:41] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[13:29:41] [PASSED] single_pixel_source_buffer
[13:29:41] [PASSED] single_pixel_clip_rectangle
[13:29:41] [PASSED] well_known_colors
[13:29:41] [PASSED] destination_pitch
[13:29:41] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[13:29:41] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[13:29:41] [PASSED] single_pixel_source_buffer
[13:29:41] [PASSED] single_pixel_clip_rectangle
[13:29:41] [PASSED] well_known_colors
[13:29:41] [PASSED] destination_pitch
[13:29:41] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[13:29:41] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[13:29:41] [PASSED] single_pixel_source_buffer
[13:29:41] [PASSED] single_pixel_clip_rectangle
[13:29:41] [PASSED] well_known_colors
[13:29:41] [PASSED] destination_pitch
[13:29:41] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[13:29:41] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[13:29:41] [PASSED] single_pixel_source_buffer
[13:29:41] [PASSED] single_pixel_clip_rectangle
[13:29:41] [PASSED] well_known_colors
[13:29:41] [PASSED] destination_pitch
[13:29:41] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[13:29:41] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[13:29:41] [PASSED] single_pixel_source_buffer
[13:29:41] [PASSED] single_pixel_clip_rectangle
[13:29:41] [PASSED] well_known_colors
[13:29:41] [PASSED] destination_pitch
[13:29:41] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[13:29:41] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[13:29:41] [PASSED] single_pixel_source_buffer
[13:29:41] [PASSED] single_pixel_clip_rectangle
[13:29:41] [PASSED] well_known_colors
[13:29:41] [PASSED] destination_pitch
[13:29:41] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[13:29:41] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[13:29:41] [PASSED] single_pixel_source_buffer
[13:29:41] [PASSED] single_pixel_clip_rectangle
[13:29:41] [PASSED] well_known_colors
[13:29:41] [PASSED] destination_pitch
[13:29:41] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[13:29:41] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[13:29:41] [PASSED] single_pixel_source_buffer
[13:29:41] [PASSED] single_pixel_clip_rectangle
[13:29:41] [PASSED] well_known_colors
[13:29:41] [PASSED] destination_pitch
[13:29:41] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[13:29:41] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[13:29:41] [PASSED] single_pixel_source_buffer
[13:29:41] [PASSED] single_pixel_clip_rectangle
[13:29:41] [PASSED] well_known_colors
[13:29:41] [PASSED] destination_pitch
[13:29:41] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[13:29:41] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[13:29:41] [PASSED] single_pixel_source_buffer
[13:29:41] [PASSED] single_pixel_clip_rectangle
[13:29:41] [PASSED] well_known_colors
[13:29:41] [PASSED] destination_pitch
[13:29:41] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[13:29:41] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[13:29:41] [PASSED] single_pixel_source_buffer
[13:29:41] [PASSED] single_pixel_clip_rectangle
[13:29:41] [PASSED] well_known_colors
[13:29:41] [PASSED] destination_pitch
[13:29:41] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[13:29:41] ============== drm_test_fb_xrgb8888_to_mono ===============
[13:29:41] [PASSED] single_pixel_source_buffer
[13:29:41] [PASSED] single_pixel_clip_rectangle
[13:29:41] [PASSED] well_known_colors
[13:29:41] [PASSED] destination_pitch
[13:29:41] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[13:29:41] ==================== drm_test_fb_swab =====================
[13:29:41] [PASSED] single_pixel_source_buffer
[13:29:41] [PASSED] single_pixel_clip_rectangle
[13:29:41] [PASSED] well_known_colors
[13:29:41] [PASSED] destination_pitch
[13:29:41] ================ [PASSED] drm_test_fb_swab =================
[13:29:41] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[13:29:41] [PASSED] single_pixel_source_buffer
[13:29:41] [PASSED] single_pixel_clip_rectangle
[13:29:41] [PASSED] well_known_colors
[13:29:41] [PASSED] destination_pitch
[13:29:41] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[13:29:41] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[13:29:41] [PASSED] single_pixel_source_buffer
[13:29:41] [PASSED] single_pixel_clip_rectangle
[13:29:41] [PASSED] well_known_colors
[13:29:41] [PASSED] destination_pitch
[13:29:41] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[13:29:41] ================= drm_test_fb_clip_offset =================
[13:29:41] [PASSED] pass through
[13:29:41] [PASSED] horizontal offset
[13:29:41] [PASSED] vertical offset
[13:29:41] [PASSED] horizontal and vertical offset
[13:29:41] [PASSED] horizontal offset (custom pitch)
[13:29:41] [PASSED] vertical offset (custom pitch)
[13:29:41] [PASSED] horizontal and vertical offset (custom pitch)
[13:29:41] ============= [PASSED] drm_test_fb_clip_offset =============
[13:29:41] =================== drm_test_fb_memcpy ====================
[13:29:41] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[13:29:41] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[13:29:41] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[13:29:41] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[13:29:41] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[13:29:41] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[13:29:41] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[13:29:41] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[13:29:41] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[13:29:41] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[13:29:41] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[13:29:41] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[13:29:41] =============== [PASSED] drm_test_fb_memcpy ================
[13:29:41] ============= [PASSED] drm_format_helper_test ==============
[13:29:41] ================= drm_format (18 subtests) =================
[13:29:41] [PASSED] drm_test_format_block_width_invalid
[13:29:41] [PASSED] drm_test_format_block_width_one_plane
[13:29:41] [PASSED] drm_test_format_block_width_two_plane
[13:29:41] [PASSED] drm_test_format_block_width_three_plane
[13:29:41] [PASSED] drm_test_format_block_width_tiled
[13:29:41] [PASSED] drm_test_format_block_height_invalid
[13:29:41] [PASSED] drm_test_format_block_height_one_plane
[13:29:41] [PASSED] drm_test_format_block_height_two_plane
[13:29:41] [PASSED] drm_test_format_block_height_three_plane
[13:29:41] [PASSED] drm_test_format_block_height_tiled
[13:29:41] [PASSED] drm_test_format_min_pitch_invalid
[13:29:41] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[13:29:41] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[13:29:41] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[13:29:41] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[13:29:41] [PASSED] drm_test_format_min_pitch_two_plane
[13:29:41] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[13:29:41] [PASSED] drm_test_format_min_pitch_tiled
[13:29:41] =================== [PASSED] drm_format ====================
[13:29:41] ============== drm_framebuffer (10 subtests) ===============
[13:29:41] ========== drm_test_framebuffer_check_src_coords ==========
[13:29:41] [PASSED] Success: source fits into fb
[13:29:41] [PASSED] Fail: overflowing fb with x-axis coordinate
[13:29:41] [PASSED] Fail: overflowing fb with y-axis coordinate
[13:29:41] [PASSED] Fail: overflowing fb with source width
[13:29:41] [PASSED] Fail: overflowing fb with source height
[13:29:41] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[13:29:41] [PASSED] drm_test_framebuffer_cleanup
[13:29:41] =============== drm_test_framebuffer_create ===============
[13:29:41] [PASSED] ABGR8888 normal sizes
[13:29:41] [PASSED] ABGR8888 max sizes
[13:29:41] [PASSED] ABGR8888 pitch greater than min required
[13:29:41] [PASSED] ABGR8888 pitch less than min required
[13:29:41] [PASSED] ABGR8888 Invalid width
[13:29:41] [PASSED] ABGR8888 Invalid buffer handle
[13:29:41] [PASSED] No pixel format
[13:29:41] [PASSED] ABGR8888 Width 0
[13:29:41] [PASSED] ABGR8888 Height 0
[13:29:41] [PASSED] ABGR8888 Out of bound height * pitch combination
[13:29:41] [PASSED] ABGR8888 Large buffer offset
[13:29:41] [PASSED] ABGR8888 Buffer offset for inexistent plane
[13:29:41] [PASSED] ABGR8888 Invalid flag
[13:29:41] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[13:29:41] [PASSED] ABGR8888 Valid buffer modifier
[13:29:41] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[13:29:41] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[13:29:41] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[13:29:41] [PASSED] NV12 Normal sizes
[13:29:41] [PASSED] NV12 Max sizes
[13:29:41] [PASSED] NV12 Invalid pitch
[13:29:41] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[13:29:41] [PASSED] NV12 different modifier per-plane
[13:29:41] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[13:29:41] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[13:29:41] [PASSED] NV12 Modifier for inexistent plane
[13:29:41] [PASSED] NV12 Handle for inexistent plane
[13:29:41] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[13:29:41] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[13:29:41] [PASSED] YVU420 Normal sizes
[13:29:41] [PASSED] YVU420 Max sizes
[13:29:41] [PASSED] YVU420 Invalid pitch
[13:29:41] [PASSED] YVU420 Different pitches
[13:29:41] [PASSED] YVU420 Different buffer offsets/pitches
[13:29:41] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[13:29:41] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[13:29:41] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[13:29:41] [PASSED] YVU420 Valid modifier
[13:29:41] [PASSED] YVU420 Different modifiers per plane
[13:29:41] [PASSED] YVU420 Modifier for inexistent plane
[13:29:41] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[13:29:41] [PASSED] X0L2 Normal sizes
[13:29:41] [PASSED] X0L2 Max sizes
[13:29:41] [PASSED] X0L2 Invalid pitch
[13:29:41] [PASSED] X0L2 Pitch greater than minimum required
[13:29:41] [PASSED] X0L2 Handle for inexistent plane
[13:29:41] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[13:29:41] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[13:29:41] [PASSED] X0L2 Valid modifier
[13:29:41] [PASSED] X0L2 Modifier for inexistent plane
[13:29:41] =========== [PASSED] drm_test_framebuffer_create ===========
[13:29:41] [PASSED] drm_test_framebuffer_free
[13:29:41] [PASSED] drm_test_framebuffer_init
[13:29:41] [PASSED] drm_test_framebuffer_init_bad_format
[13:29:41] [PASSED] drm_test_framebuffer_init_dev_mismatch
[13:29:41] [PASSED] drm_test_framebuffer_lookup
[13:29:41] [PASSED] drm_test_framebuffer_lookup_inexistent
[13:29:41] [PASSED] drm_test_framebuffer_modifiers_not_supported
[13:29:41] ================= [PASSED] drm_framebuffer =================
[13:29:41] ================ drm_gem_shmem (8 subtests) ================
[13:29:41] [PASSED] drm_gem_shmem_test_obj_create
[13:29:41] [PASSED] drm_gem_shmem_test_obj_create_private
[13:29:41] [PASSED] drm_gem_shmem_test_pin_pages
[13:29:41] [PASSED] drm_gem_shmem_test_vmap
[13:29:41] [PASSED] drm_gem_shmem_test_get_sg_table
[13:29:41] [PASSED] drm_gem_shmem_test_get_pages_sgt
[13:29:41] [PASSED] drm_gem_shmem_test_madvise
[13:29:41] [PASSED] drm_gem_shmem_test_purge
[13:29:41] ================== [PASSED] drm_gem_shmem ==================
[13:29:41] === drm_atomic_helper_connector_hdmi_check (29 subtests) ===
[13:29:41] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[13:29:41] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[13:29:41] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[13:29:41] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[13:29:41] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[13:29:41] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[13:29:41] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[13:29:41] [PASSED] Automatic
[13:29:41] [PASSED] Full
[13:29:41] [PASSED] Limited 16:235
[13:29:41] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[13:29:41] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[13:29:41] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[13:29:41] [PASSED] drm_test_check_disable_connector
[13:29:41] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[13:29:41] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[13:29:41] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[13:29:41] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[13:29:41] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[13:29:41] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[13:29:41] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[13:29:41] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[13:29:41] [PASSED] drm_test_check_output_bpc_dvi
[13:29:41] [PASSED] drm_test_check_output_bpc_format_vic_1
[13:29:41] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[13:29:41] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[13:29:41] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[13:29:41] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[13:29:41] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[13:29:41] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[13:29:41] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[13:29:41] ============ drm_test_check_hdmi_color_format =============
[13:29:41] [PASSED] AUTO -> RGB
[13:29:41] [PASSED] YCBCR422 -> YUV422
[13:29:41] [PASSED] YCBCR420 -> YUV420
[13:29:41] [PASSED] YCBCR444 -> YUV444
[13:29:41] [PASSED] RGB -> RGB
[13:29:41] ======== [PASSED] drm_test_check_hdmi_color_format =========
[13:29:41] ======== drm_test_check_hdmi_color_format_420_only ========
[13:29:41] [PASSED] RGB should fail
[13:29:41] [PASSED] YUV444 should fail
[13:29:41] [PASSED] YUV422 should fail
[13:29:41] [PASSED] YUV420 should work
[13:29:41] ==== [PASSED] drm_test_check_hdmi_color_format_420_only ====
[13:29:41] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[13:29:41] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[13:29:41] [PASSED] drm_test_check_broadcast_rgb_value
[13:29:41] [PASSED] drm_test_check_bpc_8_value
[13:29:41] [PASSED] drm_test_check_bpc_10_value
[13:29:41] [PASSED] drm_test_check_bpc_12_value
[13:29:41] [PASSED] drm_test_check_format_value
[13:29:41] [PASSED] drm_test_check_tmds_char_value
[13:29:41] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[13:29:41] = drm_atomic_helper_connector_hdmi_mode_valid (7 subtests) =
[13:29:41] [PASSED] drm_test_check_mode_valid
[13:29:41] [PASSED] drm_test_check_mode_valid_reject
[13:29:41] [PASSED] drm_test_check_mode_valid_reject_rate
[13:29:41] [PASSED] drm_test_check_mode_valid_reject_max_clock
[13:29:41] [PASSED] drm_test_check_mode_valid_yuv420_only_max_clock
[13:29:41] [PASSED] drm_test_check_mode_valid_reject_yuv420_only_connector
[13:29:41] [PASSED] drm_test_check_mode_valid_accept_yuv420_also_connector_rgb
[13:29:41] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[13:29:41] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[13:29:41] [PASSED] drm_test_check_infoframes
[13:29:41] [PASSED] drm_test_check_reject_avi_infoframe
[13:29:41] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[13:29:41] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[13:29:41] [PASSED] drm_test_check_reject_audio_infoframe
[13:29:41] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[13:29:41] ================= drm_managed (2 subtests) =================
[13:29:41] [PASSED] drm_test_managed_release_action
[13:29:41] [PASSED] drm_test_managed_run_action
[13:29:41] =================== [PASSED] drm_managed ===================
[13:29:41] =================== drm_mm (6 subtests) ====================
[13:29:41] [PASSED] drm_test_mm_init
[13:29:41] [PASSED] drm_test_mm_debug
[13:29:41] [PASSED] drm_test_mm_align32
[13:29:41] [PASSED] drm_test_mm_align64
[13:29:41] [PASSED] drm_test_mm_lowest
[13:29:41] [PASSED] drm_test_mm_highest
[13:29:41] ===================== [PASSED] drm_mm ======================
[13:29:41] ============= drm_modes_analog_tv (5 subtests) =============
[13:29:41] [PASSED] drm_test_modes_analog_tv_mono_576i
[13:29:41] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[13:29:41] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[13:29:41] [PASSED] drm_test_modes_analog_tv_pal_576i
[13:29:41] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[13:29:41] =============== [PASSED] drm_modes_analog_tv ===============
[13:29:41] ============== drm_plane_helper (2 subtests) ===============
[13:29:41] =============== drm_test_check_plane_state ================
[13:29:41] [PASSED] clipping_simple
[13:29:41] [PASSED] clipping_rotate_reflect
[13:29:41] [PASSED] positioning_simple
[13:29:41] [PASSED] upscaling
[13:29:41] [PASSED] downscaling
[13:29:41] [PASSED] rounding1
[13:29:41] [PASSED] rounding2
[13:29:41] [PASSED] rounding3
[13:29:41] [PASSED] rounding4
[13:29:41] =========== [PASSED] drm_test_check_plane_state ============
[13:29:41] =========== drm_test_check_invalid_plane_state ============
[13:29:41] [PASSED] positioning_invalid
[13:29:41] [PASSED] upscaling_invalid
[13:29:41] [PASSED] downscaling_invalid
[13:29:41] ======= [PASSED] drm_test_check_invalid_plane_state ========
[13:29:41] ================ [PASSED] drm_plane_helper =================
[13:29:41] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[13:29:41] ====== drm_test_connector_helper_tv_get_modes_check =======
[13:29:41] [PASSED] None
[13:29:41] [PASSED] PAL
[13:29:41] [PASSED] NTSC
[13:29:41] [PASSED] Both, NTSC Default
[13:29:41] [PASSED] Both, PAL Default
[13:29:41] [PASSED] Both, NTSC Default, with PAL on command-line
[13:29:41] [PASSED] Both, PAL Default, with NTSC on command-line
[13:29:41] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[13:29:41] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[13:29:41] ================== drm_rect (9 subtests) ===================
[13:29:41] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[13:29:41] [PASSED] drm_test_rect_clip_scaled_not_clipped
[13:29:41] [PASSED] drm_test_rect_clip_scaled_clipped
[13:29:41] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[13:29:41] ================= drm_test_rect_intersect =================
[13:29:41] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[13:29:41] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[13:29:41] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[13:29:41] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[13:29:41] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[13:29:41] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[13:29:41] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[13:29:41] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[13:29:41] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[13:29:41] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[13:29:41] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[13:29:41] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[13:29:41] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[13:29:41] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[13:29:41] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[13:29:41] ============= [PASSED] drm_test_rect_intersect =============
[13:29:41] ================ drm_test_rect_calc_hscale ================
[13:29:41] [PASSED] normal use
[13:29:41] [PASSED] out of max range
[13:29:41] [PASSED] out of min range
[13:29:41] [PASSED] zero dst
[13:29:41] [PASSED] negative src
[13:29:41] [PASSED] negative dst
[13:29:41] ============ [PASSED] drm_test_rect_calc_hscale ============
[13:29:41] ================ drm_test_rect_calc_vscale ================
[13:29:41] [PASSED] normal use
[13:29:41] [PASSED] out of max range
[13:29:41] [PASSED] out of min range
[13:29:41] [PASSED] zero dst
[13:29:41] [PASSED] negative src
[13:29:41] [PASSED] negative dst
[13:29:41] ============ [PASSED] drm_test_rect_calc_vscale ============
[13:29:41] ================== drm_test_rect_rotate ===================
[13:29:41] [PASSED] reflect-x
[13:29:41] [PASSED] reflect-y
[13:29:41] [PASSED] rotate-0
[13:29:41] [PASSED] rotate-90
[13:29:41] [PASSED] rotate-180
[13:29:41] [PASSED] rotate-270
[13:29:41] ============== [PASSED] drm_test_rect_rotate ===============
[13:29:41] ================ drm_test_rect_rotate_inv =================
[13:29:41] [PASSED] reflect-x
[13:29:41] [PASSED] reflect-y
[13:29:41] [PASSED] rotate-0
[13:29:41] [PASSED] rotate-90
[13:29:41] [PASSED] rotate-180
[13:29:41] [PASSED] rotate-270
[13:29:41] ============ [PASSED] drm_test_rect_rotate_inv =============
[13:29:41] ==================== [PASSED] drm_rect =====================
[13:29:41] ============ drm_sysfb_modeset_test (1 subtest) ============
[13:29:41] ============ drm_test_sysfb_build_fourcc_list =============
[13:29:41] [PASSED] no native formats
[13:29:41] [PASSED] XRGB8888 as native format
[13:29:41] [PASSED] remove duplicates
[13:29:41] [PASSED] convert alpha formats
[13:29:41] [PASSED] random formats
[13:29:41] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[13:29:41] ============= [PASSED] drm_sysfb_modeset_test ==============
[13:29:41] ================== drm_fixp (2 subtests) ===================
[13:29:41] [PASSED] drm_test_int2fixp
[13:29:41] [PASSED] drm_test_sm2fixp
[13:29:41] ==================== [PASSED] drm_fixp =====================
[13:29:41] ============================================================
[13:29:41] Testing complete. Ran 637 tests: passed: 637
[13:29:41] Elapsed time: 26.876s total, 1.764s configuring, 24.946s building, 0.147s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[13:29:42] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:29:43] 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
[13:29:53] Starting KUnit Kernel (1/1)...
[13:29:53] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:29:53] ================= ttm_device (5 subtests) ==================
[13:29:53] [PASSED] ttm_device_init_basic
[13:29:53] [PASSED] ttm_device_init_multiple
[13:29:53] [PASSED] ttm_device_fini_basic
[13:29:53] [PASSED] ttm_device_init_no_vma_man
[13:29:53] ================== ttm_device_init_pools ==================
[13:29:53] [PASSED] No DMA allocations, no DMA32 required
[13:29:53] [PASSED] DMA allocations, DMA32 required
[13:29:53] [PASSED] No DMA allocations, DMA32 required
[13:29:53] [PASSED] DMA allocations, no DMA32 required
[13:29:53] ============== [PASSED] ttm_device_init_pools ==============
[13:29:53] =================== [PASSED] ttm_device ====================
[13:29:53] ================== ttm_pool (8 subtests) ===================
[13:29:53] ================== ttm_pool_alloc_basic ===================
[13:29:53] [PASSED] One page
[13:29:53] [PASSED] More than one page
[13:29:53] [PASSED] Above the allocation limit
[13:29:54] [PASSED] One page, with coherent DMA mappings enabled
[13:29:54] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[13:29:54] ============== [PASSED] ttm_pool_alloc_basic ===============
[13:29:54] ============== ttm_pool_alloc_basic_dma_addr ==============
[13:29:54] [PASSED] One page
[13:29:54] [PASSED] More than one page
[13:29:54] [PASSED] Above the allocation limit
[13:29:54] [PASSED] One page, with coherent DMA mappings enabled
[13:29:54] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[13:29:54] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[13:29:54] [PASSED] ttm_pool_alloc_order_caching_match
[13:29:54] [PASSED] ttm_pool_alloc_caching_mismatch
[13:29:54] [PASSED] ttm_pool_alloc_order_mismatch
[13:29:54] [PASSED] ttm_pool_free_dma_alloc
[13:29:54] [PASSED] ttm_pool_free_no_dma_alloc
[13:29:54] [PASSED] ttm_pool_fini_basic
[13:29:54] ==================== [PASSED] ttm_pool =====================
[13:29:54] ================ ttm_resource (8 subtests) =================
[13:29:54] ================= ttm_resource_init_basic =================
[13:29:54] [PASSED] Init resource in TTM_PL_SYSTEM
[13:29:54] [PASSED] Init resource in TTM_PL_VRAM
[13:29:54] [PASSED] Init resource in a private placement
[13:29:54] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[13:29:54] ============= [PASSED] ttm_resource_init_basic =============
[13:29:54] [PASSED] ttm_resource_init_pinned
[13:29:54] [PASSED] ttm_resource_fini_basic
[13:29:54] [PASSED] ttm_resource_manager_init_basic
[13:29:54] [PASSED] ttm_resource_manager_usage_basic
[13:29:54] [PASSED] ttm_resource_manager_set_used_basic
[13:29:54] [PASSED] ttm_sys_man_alloc_basic
[13:29:54] [PASSED] ttm_sys_man_free_basic
[13:29:54] ================== [PASSED] ttm_resource ===================
[13:29:54] =================== ttm_tt (15 subtests) ===================
[13:29:54] ==================== ttm_tt_init_basic ====================
[13:29:54] [PASSED] Page-aligned size
[13:29:54] [PASSED] Extra pages requested
[13:29:54] ================ [PASSED] ttm_tt_init_basic ================
[13:29:54] [PASSED] ttm_tt_init_misaligned
[13:29:54] [PASSED] ttm_tt_fini_basic
[13:29:54] [PASSED] ttm_tt_fini_sg
[13:29:54] [PASSED] ttm_tt_fini_shmem
[13:29:54] [PASSED] ttm_tt_create_basic
[13:29:54] [PASSED] ttm_tt_create_invalid_bo_type
[13:29:54] [PASSED] ttm_tt_create_ttm_exists
[13:29:54] [PASSED] ttm_tt_create_failed
[13:29:54] [PASSED] ttm_tt_destroy_basic
[13:29:54] [PASSED] ttm_tt_populate_null_ttm
[13:29:54] [PASSED] ttm_tt_populate_populated_ttm
[13:29:54] [PASSED] ttm_tt_unpopulate_basic
[13:29:54] [PASSED] ttm_tt_unpopulate_empty_ttm
[13:29:54] [PASSED] ttm_tt_swapin_basic
[13:29:54] ===================== [PASSED] ttm_tt ======================
[13:29:54] =================== ttm_bo (14 subtests) ===================
[13:29:54] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[13:29:54] [PASSED] Cannot be interrupted and sleeps
[13:29:54] [PASSED] Cannot be interrupted, locks straight away
[13:29:54] [PASSED] Can be interrupted, sleeps
[13:29:54] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[13:29:54] [PASSED] ttm_bo_reserve_locked_no_sleep
[13:29:54] [PASSED] ttm_bo_reserve_no_wait_ticket
[13:29:54] [PASSED] ttm_bo_reserve_double_resv
[13:29:54] [PASSED] ttm_bo_reserve_interrupted
[13:29:54] [PASSED] ttm_bo_reserve_deadlock
[13:29:54] [PASSED] ttm_bo_unreserve_basic
[13:29:54] [PASSED] ttm_bo_unreserve_pinned
[13:29:54] [PASSED] ttm_bo_unreserve_bulk
[13:29:54] [PASSED] ttm_bo_fini_basic
[13:29:54] [PASSED] ttm_bo_fini_shared_resv
[13:29:54] [PASSED] ttm_bo_pin_basic
[13:29:54] [PASSED] ttm_bo_pin_unpin_resource
[13:29:54] [PASSED] ttm_bo_multiple_pin_one_unpin
[13:29:54] ===================== [PASSED] ttm_bo ======================
[13:29:54] ============== ttm_bo_validate (22 subtests) ===============
[13:29:54] ============== ttm_bo_init_reserved_sys_man ===============
[13:29:54] [PASSED] Buffer object for userspace
[13:29:54] [PASSED] Kernel buffer object
[13:29:54] [PASSED] Shared buffer object
[13:29:54] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[13:29:54] ============== ttm_bo_init_reserved_mock_man ==============
[13:29:54] [PASSED] Buffer object for userspace
[13:29:54] [PASSED] Kernel buffer object
[13:29:54] [PASSED] Shared buffer object
[13:29:54] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[13:29:54] [PASSED] ttm_bo_init_reserved_resv
[13:29:54] ================== ttm_bo_validate_basic ==================
[13:29:54] [PASSED] Buffer object for userspace
[13:29:54] [PASSED] Kernel buffer object
[13:29:54] [PASSED] Shared buffer object
[13:29:54] ============== [PASSED] ttm_bo_validate_basic ==============
[13:29:54] [PASSED] ttm_bo_validate_invalid_placement
[13:29:54] ============= ttm_bo_validate_same_placement ==============
[13:29:54] [PASSED] System manager
[13:29:54] [PASSED] VRAM manager
[13:29:54] ========= [PASSED] ttm_bo_validate_same_placement ==========
[13:29:54] [PASSED] ttm_bo_validate_failed_alloc
[13:29:54] [PASSED] ttm_bo_validate_pinned
[13:29:54] [PASSED] ttm_bo_validate_busy_placement
[13:29:54] ================ ttm_bo_validate_multihop =================
[13:29:54] [PASSED] Buffer object for userspace
[13:29:54] [PASSED] Kernel buffer object
[13:29:54] [PASSED] Shared buffer object
[13:29:54] ============ [PASSED] ttm_bo_validate_multihop =============
[13:29:54] ========== ttm_bo_validate_no_placement_signaled ==========
[13:29:54] [PASSED] Buffer object in system domain, no page vector
[13:29:54] [PASSED] Buffer object in system domain with an existing page vector
[13:29:54] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[13:29:54] ======== ttm_bo_validate_no_placement_not_signaled ========
[13:29:54] [PASSED] Buffer object for userspace
[13:29:54] [PASSED] Kernel buffer object
[13:29:54] [PASSED] Shared buffer object
[13:29:54] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[13:29:54] [PASSED] ttm_bo_validate_move_fence_signaled
[13:29:54] ========= ttm_bo_validate_move_fence_not_signaled =========
[13:29:54] [PASSED] Waits for GPU
[13:29:54] [PASSED] Tries to lock straight away
[13:29:54] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[13:29:54] [PASSED] ttm_bo_validate_swapout
[13:29:54] [PASSED] ttm_bo_validate_happy_evict
[13:29:54] [PASSED] ttm_bo_validate_all_pinned_evict
[13:29:54] [PASSED] ttm_bo_validate_allowed_only_evict
[13:29:54] [PASSED] ttm_bo_validate_deleted_evict
[13:29:54] [PASSED] ttm_bo_validate_busy_domain_evict
[13:29:54] [PASSED] ttm_bo_validate_evict_gutting
[13:29:54] [PASSED] ttm_bo_validate_recrusive_evict
[13:29:54] ================= [PASSED] ttm_bo_validate =================
[13:29:54] ============================================================
[13:29:54] Testing complete. Ran 102 tests: passed: 102
[13:29:54] Elapsed time: 12.055s total, 1.803s configuring, 10.037s building, 0.169s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ Xe.CI.BAT: success for drm/i915/cdclk: Workaround some kind of scaler 2PPC issue
2026-07-15 12:09 [PATCH 0/4] drm/i915/cdclk: Workaround some kind of scaler 2PPC issue Ville Syrjala
` (5 preceding siblings ...)
2026-07-15 13:29 ` ✓ CI.KUnit: success " Patchwork
@ 2026-07-15 14:06 ` Patchwork
2026-07-15 15:53 ` ✗ Xe.CI.FULL: failure " Patchwork
7 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2026-07-15 14:06 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 35809 bytes --]
== Series Details ==
Series: drm/i915/cdclk: Workaround some kind of scaler 2PPC issue
URL : https://patchwork.freedesktop.org/series/170484/
State : success
== Summary ==
CI Bug Log - changes from xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b_BAT -> xe-pw-170484v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-170484v1_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@eof:
- bat-wcl-2: NOTRUN -> [SKIP][1] ([Intel XE#7241]) +4 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-wcl-2/igt@fbdev@eof.html
- bat-ptl-1: NOTRUN -> [SKIP][2] ([Intel XE#5773]) +4 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-ptl-1/igt@fbdev@eof.html
* igt@fbdev@write:
- bat-bmg-2: NOTRUN -> [SKIP][3] ([Intel XE#2134]) +4 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-bmg-2/igt@fbdev@write.html
- bat-lnl-2: NOTRUN -> [SKIP][4] ([Intel XE#2134]) +4 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-2/igt@fbdev@write.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-ptl-1: NOTRUN -> [SKIP][5] ([Intel XE#5765])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-ptl-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-lnl-1: NOTRUN -> [SKIP][6] ([Intel XE#1466])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-bmg-2: NOTRUN -> [SKIP][7] ([Intel XE#2233])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-lnl-2: NOTRUN -> [SKIP][8] ([Intel XE#1466] / [Intel XE#2235])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-wcl-2: NOTRUN -> [SKIP][9] ([Intel XE#7245])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-wcl-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-bmg-1: NOTRUN -> [SKIP][10] ([Intel XE#2233])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-bmg-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-ptl-2: NOTRUN -> [SKIP][11] ([Intel XE#5765])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-ptl-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-wcl-1: NOTRUN -> [SKIP][12] ([Intel XE#7245])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-wcl-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- bat-bmg-2: NOTRUN -> [SKIP][13] ([Intel XE#2489] / [Intel XE#3419]) +13 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-bmg-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
- bat-ptl-1: NOTRUN -> [SKIP][14] ([Intel XE#5766]) +13 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-ptl-1/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
* igt@kms_dsc@dsc-basic:
- bat-lnl-1: NOTRUN -> [SKIP][15] ([Intel XE#8265])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-1/igt@kms_dsc@dsc-basic.html
- bat-ptl-2: NOTRUN -> [SKIP][16] ([Intel XE#5907])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-ptl-2/igt@kms_dsc@dsc-basic.html
- bat-adlp-7: NOTRUN -> [SKIP][17] ([Intel XE#8265])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-adlp-7/igt@kms_dsc@dsc-basic.html
- bat-bmg-1: NOTRUN -> [SKIP][18] ([Intel XE#8265])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-bmg-1/igt@kms_dsc@dsc-basic.html
- bat-wcl-1: NOTRUN -> [SKIP][19] ([Intel XE#8265])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-wcl-1/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@basic-flip-vs-modeset:
- bat-bmg-2: NOTRUN -> [SKIP][20] ([Intel XE#2482]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-bmg-2/igt@kms_flip@basic-flip-vs-modeset.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- bat-wcl-2: NOTRUN -> [SKIP][21] ([Intel XE#7240]) +3 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-wcl-2/igt@kms_flip@basic-flip-vs-wf_vblank.html
- bat-lnl-2: NOTRUN -> [SKIP][22] ([Intel XE#2235] / [Intel XE#2482]) +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-2/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip@basic-plain-flip:
- bat-ptl-1: NOTRUN -> [SKIP][23] ([Intel XE#5769]) +3 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-ptl-1/igt@kms_flip@basic-plain-flip.html
* igt@kms_force_connector_basic@force-connector-state:
- bat-lnl-1: NOTRUN -> [SKIP][24] ([Intel XE#352]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-1/igt@kms_force_connector_basic@force-connector-state.html
- bat-lnl-2: NOTRUN -> [SKIP][25] ([Intel XE#2235] / [Intel XE#352]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-2/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@basic:
- bat-ptl-1: NOTRUN -> [SKIP][26] ([Intel XE#5781])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-ptl-1/igt@kms_frontbuffer_tracking@basic.html
- bat-bmg-2: NOTRUN -> [SKIP][27] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-bmg-2/igt@kms_frontbuffer_tracking@basic.html
- bat-lnl-2: NOTRUN -> [SKIP][28] ([Intel XE#2235] / [Intel XE#2548] / [Intel XE#7779])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-2/igt@kms_frontbuffer_tracking@basic.html
- bat-wcl-2: NOTRUN -> [SKIP][29] ([Intel XE#7246])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-wcl-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_hdmi_inject@inject-audio:
- bat-lnl-2: NOTRUN -> [SKIP][30] ([Intel XE#1470] / [Intel XE#2235] / [Intel XE#2853])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-2/igt@kms_hdmi_inject@inject-audio.html
- bat-lnl-1: NOTRUN -> [SKIP][31] ([Intel XE#1470] / [Intel XE#2853])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-1/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24:
- bat-lnl-2: NOTRUN -> [SKIP][32] ([Intel XE#2235]) +13 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html
* igt@kms_pipe_crc_basic@hang-read-crc:
- bat-wcl-2: NOTRUN -> [SKIP][33] ([Intel XE#7237]) +13 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-wcl-2/igt@kms_pipe_crc_basic@hang-read-crc.html
* igt@kms_psr@psr-cursor-plane-move:
- bat-lnl-2: NOTRUN -> [SKIP][34] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-2/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-wcl-2: NOTRUN -> [SKIP][35] ([Intel XE#2850]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-wcl-2/igt@kms_psr@psr-sprite-plane-onoff.html
- bat-bmg-1: NOTRUN -> [SKIP][36] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-bmg-1/igt@kms_psr@psr-sprite-plane-onoff.html
- bat-ptl-1: NOTRUN -> [SKIP][37] ([Intel XE#1406] / [Intel XE#5778]) +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-ptl-1/igt@kms_psr@psr-sprite-plane-onoff.html
- bat-bmg-2: NOTRUN -> [SKIP][38] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-bmg-2/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- bat-lnl-1: NOTRUN -> [SKIP][39] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-1/igt@sriov_basic@enable-vfs-autoprobe-on.html
- bat-lnl-2: NOTRUN -> [SKIP][40] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@xe_ccs@block-copy-compressed:
- bat-adlp-7: NOTRUN -> [SKIP][41] ([Intel XE#455] / [Intel XE#488] / [Intel XE#5607]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-adlp-7/igt@xe_ccs@block-copy-compressed.html
* igt@xe_compute_preempt@compute-preempt:
- bat-adlp-7: NOTRUN -> [SKIP][42] ([Intel XE#6360]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-adlp-7/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_evict@evict-beng-small:
- bat-adlp-7: NOTRUN -> [SKIP][43] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688]) +9 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-adlp-7/igt@xe_evict@evict-beng-small.html
- bat-ptl-2: NOTRUN -> [SKIP][44] ([Intel XE#5764]) +11 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-ptl-2/igt@xe_evict@evict-beng-small.html
* igt@xe_evict@evict-beng-small-cm:
- bat-ptl-1: NOTRUN -> [SKIP][45] ([Intel XE#5764]) +11 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-ptl-1/igt@xe_evict@evict-beng-small-cm.html
- bat-lnl-1: NOTRUN -> [SKIP][46] ([Intel XE#6540] / [Intel XE#688]) +11 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-1/igt@xe_evict@evict-beng-small-cm.html
* igt@xe_evict@evict-small-multi-vm:
- bat-wcl-2: NOTRUN -> [SKIP][47] ([Intel XE#7238]) +11 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-wcl-2/igt@xe_evict@evict-small-multi-vm.html
- bat-wcl-1: NOTRUN -> [SKIP][48] ([Intel XE#7238]) +11 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-wcl-1/igt@xe_evict@evict-small-multi-vm.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
- bat-lnl-2: NOTRUN -> [SKIP][49] ([Intel XE#6540] / [Intel XE#688]) +11 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-2/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
- bat-adlp-7: NOTRUN -> [SKIP][50] ([Intel XE#5563] / [Intel XE#688]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-adlp-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
* igt@xe_exec_balancer@no-exec-parallel-basic:
- bat-lnl-1: NOTRUN -> [SKIP][51] ([Intel XE#7482]) +17 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-1/igt@xe_exec_balancer@no-exec-parallel-basic.html
* igt@xe_exec_balancer@no-exec-virtual-basic:
- bat-lnl-2: NOTRUN -> [SKIP][52] ([Intel XE#7482]) +17 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-2/igt@xe_exec_balancer@no-exec-virtual-basic.html
* igt@xe_exec_balancer@twice-cm-virtual-rebind:
- bat-ptl-1: NOTRUN -> [SKIP][53] ([Intel XE#7482]) +17 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-ptl-1/igt@xe_exec_balancer@twice-cm-virtual-rebind.html
* igt@xe_exec_balancer@twice-cm-virtual-userptr:
- bat-adlp-7: NOTRUN -> [SKIP][54] ([Intel XE#7482]) +17 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-adlp-7/igt@xe_exec_balancer@twice-cm-virtual-userptr.html
* igt@xe_exec_balancer@twice-parallel-userptr:
- bat-ptl-2: NOTRUN -> [SKIP][55] ([Intel XE#7482]) +17 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-ptl-2/igt@xe_exec_balancer@twice-parallel-userptr.html
* igt@xe_exec_balancer@twice-virtual-rebind:
- bat-wcl-1: NOTRUN -> [SKIP][56] ([Intel XE#7482]) +17 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-wcl-1/igt@xe_exec_balancer@twice-virtual-rebind.html
* igt@xe_exec_balancer@twice-virtual-userptr-rebind:
- bat-wcl-2: NOTRUN -> [SKIP][57] ([Intel XE#7482]) +17 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-wcl-2/igt@xe_exec_balancer@twice-virtual-userptr-rebind.html
* igt@xe_exec_fault_mode@twice-rebind-prefetch:
- bat-adlp-7: NOTRUN -> [SKIP][58] ([Intel XE#288] / [Intel XE#5561]) +33 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-adlp-7/igt@xe_exec_fault_mode@twice-rebind-prefetch.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- bat-adlp-7: NOTRUN -> [SKIP][59] ([Intel XE#8376]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-adlp-7/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_exec_multi_queue@exec-sanity:
- bat-bmg-1: NOTRUN -> [SKIP][60] ([Intel XE#8364]) +13 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-bmg-1/igt@xe_exec_multi_queue@exec-sanity.html
* igt@xe_exec_multi_queue@many-queues-basic:
- bat-ptl-1: NOTRUN -> [SKIP][61] ([Intel XE#8364]) +13 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-ptl-1/igt@xe_exec_multi_queue@many-queues-basic.html
* igt@xe_exec_multi_queue@many-queues-basic-smem:
- bat-lnl-2: NOTRUN -> [SKIP][62] ([Intel XE#8364]) +13 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-2/igt@xe_exec_multi_queue@many-queues-basic-smem.html
* igt@xe_exec_multi_queue@many-queues-priority:
- bat-ptl-2: NOTRUN -> [SKIP][63] ([Intel XE#8364]) +13 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-ptl-2/igt@xe_exec_multi_queue@many-queues-priority.html
- bat-wcl-1: NOTRUN -> [SKIP][64] ([Intel XE#8364]) +13 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-wcl-1/igt@xe_exec_multi_queue@many-queues-priority.html
* igt@xe_exec_multi_queue@many-queues-userptr-invalidate:
- bat-wcl-2: NOTRUN -> [SKIP][65] ([Intel XE#8364]) +13 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-wcl-2/igt@xe_exec_multi_queue@many-queues-userptr-invalidate.html
* igt@xe_exec_multi_queue@priority:
- bat-lnl-1: NOTRUN -> [SKIP][66] ([Intel XE#8364]) +13 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-1/igt@xe_exec_multi_queue@priority.html
- bat-bmg-2: NOTRUN -> [SKIP][67] ([Intel XE#8364]) +13 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-bmg-2/igt@xe_exec_multi_queue@priority.html
- bat-adlp-7: NOTRUN -> [SKIP][68] ([Intel XE#8364] / [Intel XE#8377]) +13 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-adlp-7/igt@xe_exec_multi_queue@priority.html
* igt@xe_exec_system_allocator@eu-fault-2m-range-device-host:
- bat-adlp-7: NOTRUN -> [SKIP][69] ([Intel XE#4915]) +11 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-adlp-7/igt@xe_exec_system_allocator@eu-fault-2m-range-device-host.html
* igt@xe_live_ktest@xe_bo:
- bat-ptl-1: NOTRUN -> [SKIP][70] ([Intel XE#5775]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-ptl-1/igt@xe_live_ktest@xe_bo.html
- bat-lnl-1: NOTRUN -> [SKIP][71] ([Intel XE#2229]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-1/igt@xe_live_ktest@xe_bo.html
- bat-adlp-7: NOTRUN -> [SKIP][72] ([Intel XE#2229] / [Intel XE#455]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-adlp-7/igt@xe_live_ktest@xe_bo.html
- bat-lnl-2: NOTRUN -> [SKIP][73] ([Intel XE#2229]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-2/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
- bat-wcl-2: NOTRUN -> [SKIP][74] ([Intel XE#7239]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-wcl-2/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
- bat-ptl-2: NOTRUN -> [SKIP][75] ([Intel XE#5775]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-ptl-2/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- bat-bmg-2: NOTRUN -> [SKIP][76] ([Intel XE#2229])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
- bat-bmg-1: NOTRUN -> [SKIP][77] ([Intel XE#2229])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-bmg-1/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-wcl-1: NOTRUN -> [SKIP][78] ([Intel XE#7239]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-wcl-1/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
- bat-adlp-7: NOTRUN -> [SKIP][79] ([Intel XE#2229] / [Intel XE#5488])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-adlp-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_mmap@vram:
- bat-wcl-2: NOTRUN -> [SKIP][80] ([Intel XE#7243])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-wcl-2/igt@xe_mmap@vram.html
- bat-ptl-2: NOTRUN -> [SKIP][81] ([Intel XE#5776])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-ptl-2/igt@xe_mmap@vram.html
- bat-wcl-1: NOTRUN -> [SKIP][82] ([Intel XE#7243])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-wcl-1/igt@xe_mmap@vram.html
- bat-ptl-1: NOTRUN -> [SKIP][83] ([Intel XE#5776])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-ptl-1/igt@xe_mmap@vram.html
- bat-lnl-1: NOTRUN -> [SKIP][84] ([Intel XE#1416])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-1/igt@xe_mmap@vram.html
- bat-adlp-7: NOTRUN -> [SKIP][85] ([Intel XE#1008] / [Intel XE#5591])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-adlp-7/igt@xe_mmap@vram.html
- bat-lnl-2: NOTRUN -> [SKIP][86] ([Intel XE#1416])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-2/igt@xe_mmap@vram.html
* igt@xe_pat@pat-index-auto:
- bat-adlp-7: NOTRUN -> [SKIP][87] ([Intel XE#8434])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-adlp-7/igt@xe_pat@pat-index-auto.html
* igt@xe_pat@pat-index-xe2:
- bat-adlp-7: NOTRUN -> [SKIP][88] ([Intel XE#977])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-adlp-7/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- bat-lnl-1: NOTRUN -> [SKIP][89] ([Intel XE#1420] / [Intel XE#2838] / [Intel XE#7590])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-1/igt@xe_pat@pat-index-xehpc.html
- bat-bmg-2: NOTRUN -> [SKIP][90] ([Intel XE#1420] / [Intel XE#7590])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-bmg-2/igt@xe_pat@pat-index-xehpc.html
- bat-adlp-7: NOTRUN -> [SKIP][91] ([Intel XE#2838] / [Intel XE#979])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-adlp-7/igt@xe_pat@pat-index-xehpc.html
- bat-wcl-2: NOTRUN -> [SKIP][92] ([Intel XE#7247] / [Intel XE#7590])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-wcl-2/igt@xe_pat@pat-index-xehpc.html
- bat-bmg-1: NOTRUN -> [SKIP][93] ([Intel XE#1420] / [Intel XE#7590])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-bmg-1/igt@xe_pat@pat-index-xehpc.html
- bat-lnl-2: NOTRUN -> [SKIP][94] ([Intel XE#1420] / [Intel XE#2838] / [Intel XE#7590])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-2/igt@xe_pat@pat-index-xehpc.html
- bat-ptl-2: NOTRUN -> [SKIP][95] ([Intel XE#5777] / [Intel XE#7590])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-ptl-2/igt@xe_pat@pat-index-xehpc.html
- bat-wcl-1: NOTRUN -> [SKIP][96] ([Intel XE#7247] / [Intel XE#7590])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-wcl-1/igt@xe_pat@pat-index-xehpc.html
- bat-ptl-1: NOTRUN -> [SKIP][97] ([Intel XE#5777] / [Intel XE#7590])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-ptl-1/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-bmg-2: NOTRUN -> [SKIP][98] ([Intel XE#2245] / [Intel XE#7590])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-bmg-2/igt@xe_pat@pat-index-xelp.html
- bat-bmg-1: NOTRUN -> [SKIP][99] ([Intel XE#2245] / [Intel XE#7590])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-bmg-1/igt@xe_pat@pat-index-xelp.html
- bat-lnl-2: NOTRUN -> [SKIP][100] ([Intel XE#7590] / [Intel XE#977])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-2/igt@xe_pat@pat-index-xelp.html
- bat-wcl-1: NOTRUN -> [SKIP][101] ([Intel XE#7242] / [Intel XE#7590])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-wcl-1/igt@xe_pat@pat-index-xelp.html
- bat-wcl-2: NOTRUN -> [SKIP][102] ([Intel XE#7242] / [Intel XE#7590])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-wcl-2/igt@xe_pat@pat-index-xelp.html
- bat-lnl-1: NOTRUN -> [SKIP][103] ([Intel XE#7590] / [Intel XE#977])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-1/igt@xe_pat@pat-index-xelp.html
- bat-ptl-2: NOTRUN -> [SKIP][104] ([Intel XE#5771] / [Intel XE#7590])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-ptl-2/igt@xe_pat@pat-index-xelp.html
- bat-ptl-1: NOTRUN -> [SKIP][105] ([Intel XE#5771] / [Intel XE#7590])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-ptl-1/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-ptl-1: NOTRUN -> [SKIP][106] ([Intel XE#5780] / [Intel XE#7590])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-ptl-1/igt@xe_pat@pat-index-xelpg.html
- bat-lnl-1: NOTRUN -> [SKIP][107] ([Intel XE#7590] / [Intel XE#979])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-1/igt@xe_pat@pat-index-xelpg.html
- bat-bmg-2: NOTRUN -> [SKIP][108] ([Intel XE#2236] / [Intel XE#7590])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html
- bat-adlp-7: NOTRUN -> [SKIP][109] ([Intel XE#979])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-adlp-7/igt@xe_pat@pat-index-xelpg.html
- bat-wcl-2: NOTRUN -> [SKIP][110] ([Intel XE#7248] / [Intel XE#7590])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-wcl-2/igt@xe_pat@pat-index-xelpg.html
- bat-bmg-1: NOTRUN -> [SKIP][111] ([Intel XE#2236] / [Intel XE#7590])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-bmg-1/igt@xe_pat@pat-index-xelpg.html
- bat-lnl-2: NOTRUN -> [SKIP][112] ([Intel XE#2236] / [Intel XE#7590] / [Intel XE#979])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-2/igt@xe_pat@pat-index-xelpg.html
- bat-ptl-2: NOTRUN -> [SKIP][113] ([Intel XE#5780] / [Intel XE#7590])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-ptl-2/igt@xe_pat@pat-index-xelpg.html
- bat-wcl-1: NOTRUN -> [SKIP][114] ([Intel XE#7248] / [Intel XE#7590])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-wcl-1/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
- bat-bmg-3: NOTRUN -> [SKIP][115] ([Intel XE#6566]) +3 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-bmg-3/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
* igt@xe_sriov_flr@flr-vf1-clear:
- bat-lnl-2: NOTRUN -> [SKIP][116] ([Intel XE#3342])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-2/igt@xe_sriov_flr@flr-vf1-clear.html
- bat-lnl-1: NOTRUN -> [SKIP][117] ([Intel XE#3342])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-1/igt@xe_sriov_flr@flr-vf1-clear.html
#### Possible fixes ####
* igt@xe_module_load@load:
- bat-wcl-1: [ABORT][118] ([Intel XE#8607]) -> [PASS][119]
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/bat-wcl-1/igt@xe_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-wcl-1/igt@xe_module_load@load.html
- bat-ptl-1: [ABORT][120] ([Intel XE#8607]) -> [PASS][121]
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/bat-ptl-1/igt@xe_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-ptl-1/igt@xe_module_load@load.html
- bat-wcl-2: [ABORT][122] ([Intel XE#8607]) -> [PASS][123]
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/bat-wcl-2/igt@xe_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-wcl-2/igt@xe_module_load@load.html
- bat-lnl-1: [ABORT][124] ([Intel XE#8607]) -> [PASS][125]
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/bat-lnl-1/igt@xe_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-1/igt@xe_module_load@load.html
- bat-bmg-3: [ABORT][126] ([Intel XE#8607]) -> [PASS][127]
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/bat-bmg-3/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-bmg-3/igt@xe_module_load@load.html
- bat-adlp-7: [ABORT][128] ([Intel XE#8607]) -> [PASS][129]
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/bat-adlp-7/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-adlp-7/igt@xe_module_load@load.html
- bat-ptl-2: [ABORT][130] ([Intel XE#8607]) -> [PASS][131]
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/bat-ptl-2/igt@xe_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-ptl-2/igt@xe_module_load@load.html
- bat-bmg-2: [ABORT][132] ([Intel XE#8607]) -> [PASS][133]
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/bat-bmg-2/igt@xe_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-bmg-2/igt@xe_module_load@load.html
- bat-bmg-1: [ABORT][134] ([Intel XE#8607]) -> [PASS][135]
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/bat-bmg-1/igt@xe_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-bmg-1/igt@xe_module_load@load.html
- bat-lnl-2: [ABORT][136] ([Intel XE#8607]) -> [PASS][137]
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/bat-lnl-2/igt@xe_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/bat-lnl-2/igt@xe_module_load@load.html
[Intel XE#1008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1008
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2235]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2235
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434
[Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482
[Intel XE#2489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2489
[Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#5488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5488
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5563]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5563
[Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
[Intel XE#5591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5591
[Intel XE#5607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5607
[Intel XE#5764]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5764
[Intel XE#5765]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5765
[Intel XE#5766]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5766
[Intel XE#5769]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5769
[Intel XE#5771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5771
[Intel XE#5773]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5773
[Intel XE#5775]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5775
[Intel XE#5776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5776
[Intel XE#5777]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5777
[Intel XE#5778]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5778
[Intel XE#5780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5780
[Intel XE#5781]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5781
[Intel XE#5907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5907
[Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314
[Intel XE#6360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6360
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#6566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6566
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#7237]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7237
[Intel XE#7238]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7238
[Intel XE#7239]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7239
[Intel XE#7240]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7240
[Intel XE#7241]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7241
[Intel XE#7242]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7242
[Intel XE#7243]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7243
[Intel XE#7245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7245
[Intel XE#7246]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7246
[Intel XE#7247]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7247
[Intel XE#7248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7248
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7779
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8376
[Intel XE#8377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8377
[Intel XE#8434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8434
[Intel XE#8607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8607
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* Linux: xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b -> xe-pw-170484v1
IGT_9006: 6380a8af26359dd222e22679442272ded836c463 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b: da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b
xe-pw-170484v1: 170484v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/index.html
[-- Attachment #2: Type: text/html, Size: 45013 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ Xe.CI.FULL: failure for drm/i915/cdclk: Workaround some kind of scaler 2PPC issue
2026-07-15 12:09 [PATCH 0/4] drm/i915/cdclk: Workaround some kind of scaler 2PPC issue Ville Syrjala
` (6 preceding siblings ...)
2026-07-15 14:06 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-07-15 15:53 ` Patchwork
7 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2026-07-15 15:53 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 124587 bytes --]
== Series Details ==
Series: drm/i915/cdclk: Workaround some kind of scaler 2PPC issue
URL : https://patchwork.freedesktop.org/series/170484/
State : failure
== Summary ==
CI Bug Log - changes from xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b_FULL -> xe-pw-170484v1_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-170484v1_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-170484v1_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-170484v1_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-lnl: NOTRUN -> [FAIL][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@xe_pmu@engine-activity-render-node-idle:
- shard-bmg: NOTRUN -> [INCOMPLETE][2] +1 other test incomplete
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-10/igt@xe_pmu@engine-activity-render-node-idle.html
Known issues
------------
Here are the changes found in xe-pw-170484v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-read:
- shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#1125] / [Intel XE#7312])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-4/igt@intel_hwmon@hwmon-read.html
* igt@kms_3d@basic:
- shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#6011])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-7/igt@kms_3d@basic.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#1466])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-4/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2233])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#3157])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-bmg: NOTRUN -> [FAIL][8] ([Intel XE#3718] / [Intel XE#6078])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][9] ([Intel XE#6078])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#3279]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2370]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2327]) +22 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-4/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#3658] / [Intel XE#7360]) +2 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1407]) +26 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-5/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#7059] / [Intel XE#7085]) +2 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#7059] / [Intel XE#7085]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-4/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +60 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-3/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2328] / [Intel XE#7367]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-2/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1477] / [Intel XE#7361]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-4/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1428] / [Intel XE#7387]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-3/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#610] / [Intel XE#7387]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +59 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1467] / [Intel XE#7367]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-1/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#607] / [Intel XE#7361]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#7679]) +6 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-3/igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#7679]) +7 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-6/igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#8365]) +6 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-6/igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p.html
* igt@kms_bw@linear-tiling-1-displays-target-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#367]) +15 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-10/igt@kms_bw@linear-tiling-1-displays-target-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-target-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#367]) +7 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-8/igt@kms_bw@linear-tiling-2-displays-target-2560x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#2887]) +83 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-1/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#2669] / [Intel XE#7389]) +19 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-8/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: NOTRUN -> [INCOMPLETE][32] ([Intel XE#7084] / [Intel XE#8150]) +1 other test incomplete
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2669] / [Intel XE#3433] / [Intel XE#7389]) +3 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#3432]) +10 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2652]) +44 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#3432]) +10 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2887]) +85 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-10/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2724] / [Intel XE#7449]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-5/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#7008])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-4/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#4417] / [Intel XE#5447]) +3 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-4/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_cdclk@plane-scaling:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#4416] / [Intel XE#7381]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-2/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_audio@dp-audio-after-suspend:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#2252]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-7/igt@kms_chamelium_audio@dp-audio-after-suspend.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2325] / [Intel XE#7358]) +10 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-9/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#306] / [Intel XE#7358]) +10 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-6/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color_pipeline@plane-lut1d:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#7358]) +7 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-2/igt@kms_chamelium_color_pipeline@plane-lut1d.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#7358]) +7 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-5/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2252]) +46 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-8/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#373]) +44 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-4/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_sharpness_filter@filter-basic:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#6507])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-5/igt@kms_chamelium_sharpness_filter@filter-basic.html
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#6507])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-4/igt@kms_chamelium_sharpness_filter@filter-basic.html
* igt@kms_color_pipeline@plane-lut3d-green-only:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#6969] / [Intel XE#7006]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-7/igt@kms_color_pipeline@plane-lut3d-green-only.html
* igt@kms_color_pipeline@plane-lut3d-green-only@pipe-a-plane-1:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#6969]) +7 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-7/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-a-plane-1.html
* igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-plane-0:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#6969]) +10 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-7/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-plane-0.html
* igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-plane-2:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#6969] / [Intel XE#7006]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-7/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-plane-2.html
* igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][55] ([Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-3/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#7642]) +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-4/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#6974]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-1/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#6974]) +3 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-6/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#307] / [Intel XE#6974]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-8/igt@kms_content_protection@dp-mst-type-1.html
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2390] / [Intel XE#6974]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-1/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][61] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +15 other tests fail
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-3/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@mei-interface:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1468] / [Intel XE#7396])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-3/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@suspend-resume:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#7642]) +12 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-2/igt@kms_content_protection@suspend-resume.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-bmg: NOTRUN -> [FAIL][64] ([Intel XE#6707] / [Intel XE#7439]) +3 other tests fail
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-10/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2320]) +28 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#2321] / [Intel XE#7355]) +8 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-2/igt@kms_cursor_crc@cursor-sliding-512x512.html
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2321] / [Intel XE#7355]) +8 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1424]) +28 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-3/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#309] / [Intel XE#7343]) +28 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#323] / [Intel XE#6035]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2286] / [Intel XE#6035]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1508])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#1508]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#4302])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-6/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#1340] / [Intel XE#7435])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#4354] / [Intel XE#5882])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-2/igt@kms_dp_link_training@non-uhbr-mst.html
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#4354] / [Intel XE#5882])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-2/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#4354] / [Intel XE#7450])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-3/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#4354] / [Intel XE#7386])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-4/igt@kms_dp_link_training@uhbr-mst.html
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#4354] / [Intel XE#7386])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-9/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#4354] / [Intel XE#5870])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-5/igt@kms_dp_link_training@uhbr-sst.html
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#4354] / [Intel XE#5870])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-1/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#4294] / [Intel XE#7477])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-7/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#4331] / [Intel XE#7227])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-7/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#4331] / [Intel XE#7227])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-basic-bigjoiner:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#8265]) +20 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-6/igt@kms_dsc@dsc-basic-bigjoiner.html
* igt@kms_dsc@dsc-with-output-formats-bigjoiner:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#8265]) +21 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-3/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#4422] / [Intel XE#7442]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-9/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#4422] / [Intel XE#7442]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-7/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#4156] / [Intel XE#7425]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-9/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#6126] / [Intel XE#776]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-5/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2372] / [Intel XE#7359])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-1/igt@kms_feature_discovery@chamelium.html
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#701] / [Intel XE#7359])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-7/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#702] / [Intel XE#7344])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-8/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#703] / [Intel XE#7448])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-5/igt@kms_feature_discovery@display-3x.html
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2373] / [Intel XE#7448])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-1/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1138] / [Intel XE#7344])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-2/igt@kms_feature_discovery@display-4x.html
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#1138] / [Intel XE#7344])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-3/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1137] / [Intel XE#2375])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-8/igt@kms_feature_discovery@dp-mst.html
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2375])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-1/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@dsc:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#8586]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-8/igt@kms_feature_discovery@dsc.html
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#8586]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-8/igt@kms_feature_discovery@dsc.html
* igt@kms_feature_discovery@psr1:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2374] / [Intel XE#6127])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-5/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1421]) +39 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-1/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: NOTRUN -> [FAIL][105] ([Intel XE#301]) +4 other tests fail
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#7178] / [Intel XE#7349]) +3 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#1397] / [Intel XE#7385]) +8 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#7179]) +3 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#7178] / [Intel XE#7349]) +3 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
- shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385]) +8 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#7178] / [Intel XE#7351]) +21 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#7178] / [Intel XE#7351]) +21 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#7179]) +3 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-5/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#352]) +2 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-3/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#7905]) +270 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-7/igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-render:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#7061]) +34 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-4/igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#4141]) +84 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#6312]) +90 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2311]) +340 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#7061] / [Intel XE#7356]) +27 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#7061] / [Intel XE#7356]) +27 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#6312] / [Intel XE#651]) +70 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#1469] / [Intel XE#7399]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
- shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#2352] / [Intel XE#7399]) +2 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [ABORT][125] ([Intel XE#8007])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#7399]) +2 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrshdr-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#7399]) +2 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2350] / [Intel XE#7503])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-3/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2313]) +347 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#656] / [Intel XE#7905]) +228 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-plflip-blt:
- shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#7865]) +163 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#7061]) +34 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-10/igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-blt.html
* igt@kms_hdmi_inject@inject-4k:
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#1470])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-8/igt@kms_hdmi_inject@inject-4k.html
* igt@kms_hdmi_inject@inject-audio:
- shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#1470] / [Intel XE#2853])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-8/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@brightness-with-hdr:
- shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#3374] / [Intel XE#3544])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-1/igt@kms_hdr@brightness-with-hdr.html
- shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#3374] / [Intel XE#3544])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#1503])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#1503]) +4 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-3/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_joiner@basic-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#6901]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-2/igt@kms_joiner@basic-big-joiner.html
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#6901]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-2/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#7086] / [Intel XE#7390]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-8/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#4298] / [Intel XE#5873])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-3/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#6900] / [Intel XE#7362]) +2 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-5/igt@kms_joiner@basic-ultra-joiner.html
- shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#6911] / [Intel XE#7378])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-1/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#6911] / [Intel XE#7466]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#4090] / [Intel XE#7443])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-2/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#7173] / [Intel XE#7294])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-7/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_mst@mst-suspend-read-crc:
- shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#8348])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-3/igt@kms_mst@mst-suspend-read-crc.html
- shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#8348])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-5/igt@kms_mst@mst-suspend-read-crc.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#7591])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#7591])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#2486]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-1/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#6912] / [Intel XE#7375])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-5/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
- shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#6912] / [Intel XE#7375])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-4/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-4/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
- shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-6/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#8303]) +3 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
- shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#7283]) +26 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#8303]) +3 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-4/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#7283]) +26 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-9/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y:
- shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#8076])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-1/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html
* igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#599] / [Intel XE#7382]) +11 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-2/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#599])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-7/igt@kms_plane_lowres@tiling-yf.html
- shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#2393])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-1/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#4596] / [Intel XE#5854]) +4 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-6/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#5021] / [Intel XE#7377]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-yf:
- shard-lnl: NOTRUN -> [SKIP][167] ([Intel XE#5020] / [Intel XE#7348]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-5/igt@kms_plane_multiple@tiling-yf.html
- shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#5020] / [Intel XE#7348]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-6/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#3307])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-3/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#2763] / [Intel XE#6886]) +53 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#2763] / [Intel XE#6886]) +29 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_backlight@bad-brightness:
- shard-bmg: NOTRUN -> [SKIP][172] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870]) +4 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-10/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][173] ([Intel XE#2938] / [Intel XE#7376] / [Intel XE#7760])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-3/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc3co-after-dc6:
- shard-bmg: NOTRUN -> [SKIP][174] ([Intel XE#8395]) +7 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-9/igt@kms_pm_dc@dc3co-after-dc6.html
* igt@kms_pm_dc@dc3co-after-dc6@psr2:
- shard-lnl: NOTRUN -> [SKIP][175] ([Intel XE#8396]) +3 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-2/igt@kms_pm_dc@dc3co-after-dc6@psr2.html
* igt@kms_pm_dc@dc3co-framedrop-check@psr2:
- shard-bmg: NOTRUN -> [SKIP][176] ([Intel XE#8396]) +3 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-1/igt@kms_pm_dc@dc3co-framedrop-check@psr2.html
* igt@kms_pm_dc@dc3co-vpb-framegap@pr:
- shard-lnl: NOTRUN -> [SKIP][177] ([Intel XE#8395]) +7 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-2/igt@kms_pm_dc@dc3co-vpb-framegap@pr.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-lnl: NOTRUN -> [SKIP][178] ([Intel XE#1131])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-8/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc5-pageflip-negative:
- shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#6927])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-8/igt@kms_pm_dc@dc5-pageflip-negative.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-lnl: NOTRUN -> [SKIP][180] ([Intel XE#3309] / [Intel XE#7368])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-1/igt@kms_pm_dc@dc5-retention-flops.html
- shard-bmg: NOTRUN -> [SKIP][181] ([Intel XE#3309] / [Intel XE#7368])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-8/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-psr:
- shard-bmg: NOTRUN -> [SKIP][182] ([Intel XE#7794]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-5/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: NOTRUN -> [FAIL][183] ([Intel XE#2029] / [Intel XE#7395])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-5/igt@kms_pm_dc@deep-pkgc.html
- shard-bmg: NOTRUN -> [SKIP][184] ([Intel XE#2505] / [Intel XE#7447])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-6/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][185] ([Intel XE#2499])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-9/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][186] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) +3 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-4/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][187] ([Intel XE#1439] / [Intel XE#7402] / [Intel XE#836])
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-10/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][188] ([Intel XE#1439] / [Intel XE#7402] / [Intel XE#836])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-lnl: NOTRUN -> [SKIP][189] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383]) +2 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@package-g7:
- shard-lnl: NOTRUN -> [SKIP][190] ([Intel XE#6813])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-8/igt@kms_pm_rpm@package-g7.html
- shard-bmg: NOTRUN -> [SKIP][191] ([Intel XE#6814] / [Intel XE#7428])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-1/igt@kms_pm_rpm@package-g7.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][192] ([Intel XE#4608] / [Intel XE#7304]) +11 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][193] ([Intel XE#4608]) +11 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][194] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) +11 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][195] ([Intel XE#2893] / [Intel XE#7304]) +22 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-3/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][196] ([Intel XE#1489]) +46 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-1/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-lnl: NOTRUN -> [SKIP][197] ([Intel XE#1128] / [Intel XE#7413]) +2 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-bmg: NOTRUN -> [SKIP][198] ([Intel XE#2387] / [Intel XE#7429]) +2 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr2-no-drrs@edp-1:
- shard-lnl: NOTRUN -> [SKIP][199] ([Intel XE#1406] / [Intel XE#4609]) +12 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-5/igt@kms_psr@fbc-psr2-no-drrs@edp-1.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-lnl: NOTRUN -> [SKIP][200] ([Intel XE#1406] / [Intel XE#7345]) +12 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-4/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@pr-sprite-render:
- shard-lnl: NOTRUN -> [SKIP][201] ([Intel XE#1406]) +23 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-3/igt@kms_psr@pr-sprite-render.html
* igt@kms_psr@psr2-no-drrs:
- shard-bmg: NOTRUN -> [SKIP][202] ([Intel XE#2234] / [Intel XE#2850]) +72 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-9/igt@kms_psr@psr2-no-drrs.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][203] ([Intel XE#2234])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-9/igt@kms_psr@psr2-primary-render.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][204] ([Intel XE#7795]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-9/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-lnl: NOTRUN -> [SKIP][205] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) +10 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-6/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][206] ([Intel XE#2330] / [Intel XE#5813]) +3 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][207] ([Intel XE#1127] / [Intel XE#5813]) +3 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][208] ([Intel XE#3904] / [Intel XE#7342]) +9 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-9/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-bmg: NOTRUN -> [SKIP][209] ([Intel XE#2413]) +2 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-9/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][210] ([Intel XE#1435])
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-7/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-lnl: NOTRUN -> [SKIP][211] ([Intel XE#1435]) +3 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-5/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
- shard-bmg: NOTRUN -> [SKIP][212] ([Intel XE#6503]) +12 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-7/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [FAIL][213] ([Intel XE#1729] / [Intel XE#7424])
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-lnl: NOTRUN -> [SKIP][214] ([Intel XE#362] / [Intel XE#5848]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-bmg: NOTRUN -> [SKIP][215] ([Intel XE#2509] / [Intel XE#7437])
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_tv_load_detect@load-detect:
- shard-lnl: NOTRUN -> [SKIP][216] ([Intel XE#330] / [Intel XE#5857])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-2/igt@kms_tv_load_detect@load-detect.html
- shard-bmg: NOTRUN -> [SKIP][217] ([Intel XE#2450] / [Intel XE#5857])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-2/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flip-suspend:
- shard-bmg: NOTRUN -> [SKIP][218] ([Intel XE#1499]) +8 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-1/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][219] ([Intel XE#2168] / [Intel XE#7444])
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-8/igt@kms_vrr@lobf.html
* igt@kms_vrr@lobf-dc3co:
- shard-bmg: NOTRUN -> [SKIP][220] ([Intel XE#8397])
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-3/igt@kms_vrr@lobf-dc3co.html
- shard-lnl: NOTRUN -> [SKIP][221] ([Intel XE#8397])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-1/igt@kms_vrr@lobf-dc3co.html
* igt@kms_vrr@lobf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][222] ([Intel XE#7638])
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-8/igt@kms_vrr@lobf@pipe-a-edp-1.html
* igt@kms_vrr@negative-basic:
- shard-lnl: NOTRUN -> [SKIP][223] ([Intel XE#1499]) +3 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-7/igt@kms_vrr@negative-basic.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-lnl: NOTRUN -> [SKIP][224] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_ccs@vm-bind-fault-mode-decompress:
- shard-lnl: NOTRUN -> [SKIP][225] ([Intel XE#7644]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-6/igt@xe_ccs@vm-bind-fault-mode-decompress.html
* igt@xe_compute@ccs-mode-basic:
- shard-bmg: NOTRUN -> [SKIP][226] ([Intel XE#6599]) +2 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-1/igt@xe_compute@ccs-mode-basic.html
- shard-lnl: NOTRUN -> [SKIP][227] ([Intel XE#1447] / [Intel XE#7471])
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-8/igt@xe_compute@ccs-mode-basic.html
* igt@xe_compute@ccs-mode-compute-kernel:
- shard-lnl: NOTRUN -> [SKIP][228] ([Intel XE#1447] / [Intel XE#7469])
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-7/igt@xe_compute@ccs-mode-compute-kernel.html
* igt@xe_compute@eu-busy-10s:
- shard-lnl: NOTRUN -> [SKIP][229] ([Intel XE#6592] / [Intel XE#6645] / [Intel XE#7391])
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-4/igt@xe_compute@eu-busy-10s.html
* igt@xe_compute_preempt@compute-preempt-many-vram-evict:
- shard-lnl: NOTRUN -> [SKIP][230] ([Intel XE#5191] / [Intel XE#7316] / [Intel XE#7346]) +1 other test skip
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-8/igt@xe_compute_preempt@compute-preempt-many-vram-evict.html
* igt@xe_configfs@survivability-mode:
- shard-lnl: NOTRUN -> [SKIP][231] ([Intel XE#8428])
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-3/igt@xe_configfs@survivability-mode.html
* igt@xe_create@create-big-vram:
- shard-lnl: NOTRUN -> [SKIP][232] ([Intel XE#1062] / [Intel XE#7318] / [Intel XE#7457])
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-7/igt@xe_create@create-big-vram.html
* igt@xe_create@multigpu-create-massive-size:
- shard-lnl: NOTRUN -> [SKIP][233] ([Intel XE#7319] / [Intel XE#7350] / [Intel XE#944])
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-3/igt@xe_create@multigpu-create-massive-size.html
- shard-bmg: NOTRUN -> [SKIP][234] ([Intel XE#2504] / [Intel XE#7319] / [Intel XE#7350])
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-10/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_evict@evict-beng-large-external-cm:
- shard-lnl: NOTRUN -> [SKIP][235] ([Intel XE#6540] / [Intel XE#688]) +65 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-2/igt@xe_evict@evict-beng-large-external-cm.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: NOTRUN -> [INCOMPLETE][236] ([Intel XE#6321] / [Intel XE#8355])
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-9/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict@evict-threads-small-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][237] ([Intel XE#8370]) +7 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-10/igt@xe_evict@evict-threads-small-multi-queue.html
* igt@xe_exec_balancer@many-parallel-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][238] ([Intel XE#7482]) +114 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-6/igt@xe_exec_balancer@many-parallel-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][239] ([Intel XE#2322] / [Intel XE#7372]) +50 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-no-exec-userptr:
- shard-lnl: NOTRUN -> [SKIP][240] ([Intel XE#1392]) +50 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-1/igt@xe_exec_basic@multigpu-no-exec-userptr.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr:
- shard-bmg: NOTRUN -> [SKIP][241] ([Intel XE#8374]) +76 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-5/igt@xe_exec_fault_mode@twice-multi-queue-userptr.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-imm:
- shard-lnl: NOTRUN -> [SKIP][242] ([Intel XE#8374]) +75 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-2/igt@xe_exec_fault_mode@twice-multi-queue-userptr-imm.html
* igt@xe_exec_multi_queue@many-queues-preempt-mode-userptr:
- shard-lnl: NOTRUN -> [SKIP][243] ([Intel XE#8364]) +174 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-1/igt@xe_exec_multi_queue@many-queues-preempt-mode-userptr.html
* igt@xe_exec_multi_queue@two-queues-priority:
- shard-bmg: NOTRUN -> [SKIP][244] ([Intel XE#8364]) +176 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-9/igt@xe_exec_multi_queue@two-queues-priority.html
* igt@xe_exec_reset@cm-multi-queue-cat-error:
- shard-bmg: NOTRUN -> [SKIP][245] ([Intel XE#8369]) +13 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-9/igt@xe_exec_reset@cm-multi-queue-cat-error.html
* igt@xe_exec_reset@long-spin-reuse-many-preempt-threads:
- shard-bmg: NOTRUN -> [FAIL][246] ([Intel XE#7850])
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-1/igt@xe_exec_reset@long-spin-reuse-many-preempt-threads.html
* igt@xe_exec_reset@multi-queue-gt-reset:
- shard-lnl: NOTRUN -> [SKIP][247] ([Intel XE#8369]) +13 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-6/igt@xe_exec_reset@multi-queue-gt-reset.html
* igt@xe_exec_system_allocator@many-stride-new-prefetch:
- shard-bmg: NOTRUN -> [INCOMPLETE][248] ([Intel XE#7098] / [Intel XE#8159])
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-3/igt@xe_exec_system_allocator@many-stride-new-prefetch.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-single-vma:
- shard-lnl: NOTRUN -> [SKIP][249] ([Intel XE#6196]) +3 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-6/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-single-vma.html
* igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-rebind:
- shard-lnl: NOTRUN -> [SKIP][250] ([Intel XE#8378]) +54 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-8/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-rebind.html
* igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][251] ([Intel XE#8378]) +54 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-6/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind.html
* igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add:
- shard-bmg: NOTRUN -> [SKIP][252] ([Intel XE#6281] / [Intel XE#7426])
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-2/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html
* igt@xe_gpgpu_fill@offset-4x4:
- shard-lnl: NOTRUN -> [SKIP][253] ([Intel XE#7954])
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-3/igt@xe_gpgpu_fill@offset-4x4.html
- shard-bmg: NOTRUN -> [SKIP][254] ([Intel XE#7954])
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-10/igt@xe_gpgpu_fill@offset-4x4.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][255] ([Intel XE#2229])
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-4/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_eudebug:
- shard-lnl: NOTRUN -> [SKIP][256] ([Intel XE#2833])
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-7/igt@xe_live_ktest@xe_eudebug.html
- shard-bmg: NOTRUN -> [SKIP][257] ([Intel XE#2833])
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-2/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-lnl: NOTRUN -> [SKIP][258] ([Intel XE#2229]) +1 other test skip
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_madvise@atomic-global:
- shard-lnl: NOTRUN -> [SKIP][259] ([Intel XE#7980]) +2 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-3/igt@xe_madvise@atomic-global.html
* igt@xe_media_fill@media-fill:
- shard-lnl: NOTRUN -> [SKIP][260] ([Intel XE#560] / [Intel XE#7321] / [Intel XE#7453])
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-2/igt@xe_media_fill@media-fill.html
- shard-bmg: NOTRUN -> [SKIP][261] ([Intel XE#2459] / [Intel XE#2596] / [Intel XE#7321] / [Intel XE#7453])
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-2/igt@xe_media_fill@media-fill.html
* igt@xe_mmap@pci-membarrier:
- shard-lnl: NOTRUN -> [SKIP][262] ([Intel XE#5100] / [Intel XE#7322] / [Intel XE#7408]) +3 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-2/igt@xe_mmap@pci-membarrier.html
* igt@xe_mmap@small-bar:
- shard-lnl: NOTRUN -> [SKIP][263] ([Intel XE#512] / [Intel XE#7323] / [Intel XE#7384])
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-2/igt@xe_mmap@small-bar.html
- shard-bmg: NOTRUN -> [SKIP][264] ([Intel XE#586] / [Intel XE#7323] / [Intel XE#7384])
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-3/igt@xe_mmap@small-bar.html
* igt@xe_mmap@vram:
- shard-lnl: NOTRUN -> [SKIP][265] ([Intel XE#1416])
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-4/igt@xe_mmap@vram.html
* igt@xe_multigpu_svm@mgpu-atomic-op-conflict:
- shard-lnl: NOTRUN -> [SKIP][266] ([Intel XE#6964]) +20 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-3/igt@xe_multigpu_svm@mgpu-atomic-op-conflict.html
* igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch:
- shard-bmg: NOTRUN -> [SKIP][267] ([Intel XE#6964]) +20 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-6/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html
* igt@xe_noexec_ping_pong@basic:
- shard-lnl: NOTRUN -> [SKIP][268] ([Intel XE#6259] / [Intel XE#7324] / [Intel XE#7406])
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-6/igt@xe_noexec_ping_pong@basic.html
* igt@xe_non_msix@walker-interrupt-notification-non-msix:
- shard-bmg: NOTRUN -> [SKIP][269] ([Intel XE#7622])
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-4/igt@xe_non_msix@walker-interrupt-notification-non-msix.html
- shard-lnl: NOTRUN -> [SKIP][270] ([Intel XE#7622])
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-6/igt@xe_non_msix@walker-interrupt-notification-non-msix.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-lnl: NOTRUN -> [SKIP][271] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393])
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-2/igt@xe_oa@oa-tlb-invalidate.html
- shard-bmg: NOTRUN -> [SKIP][272] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393])
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-9/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_page_reclaim@basic-mixed:
- shard-bmg: NOTRUN -> [SKIP][273] ([Intel XE#7793]) +12 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-9/igt@xe_page_reclaim@basic-mixed.html
* igt@xe_page_reclaim@binds-null-vma:
- shard-lnl: NOTRUN -> [SKIP][274] ([Intel XE#7793]) +12 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-3/igt@xe_page_reclaim@binds-null-vma.html
* igt@xe_pat@l2-flush-opt-svm-pat-restrict:
- shard-lnl: NOTRUN -> [SKIP][275] ([Intel XE#7590] / [Intel XE#7772]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-4/igt@xe_pat@l2-flush-opt-svm-pat-restrict.html
* igt@xe_pat@pat-index-xehpc:
- shard-lnl: NOTRUN -> [SKIP][276] ([Intel XE#1420] / [Intel XE#2838] / [Intel XE#7590])
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-6/igt@xe_pat@pat-index-xehpc.html
- shard-bmg: NOTRUN -> [SKIP][277] ([Intel XE#1420] / [Intel XE#7590])
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-9/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- shard-lnl: NOTRUN -> [SKIP][278] ([Intel XE#7590] / [Intel XE#977])
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-1/igt@xe_pat@pat-index-xelp.html
- shard-bmg: NOTRUN -> [SKIP][279] ([Intel XE#2245] / [Intel XE#7590])
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-3/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][280] ([Intel XE#2236] / [Intel XE#7590])
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-1/igt@xe_pat@pat-index-xelpg.html
- shard-lnl: NOTRUN -> [SKIP][281] ([Intel XE#7590] / [Intel XE#979])
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-5/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pat@pat-sw-hw-reset-compare:
- shard-lnl: NOTRUN -> [FAIL][282] ([Intel XE#7695]) +2 other tests fail
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-2/igt@xe_pat@pat-sw-hw-reset-compare.html
- shard-bmg: NOTRUN -> [FAIL][283] ([Intel XE#7695]) +2 other tests fail
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-2/igt@xe_pat@pat-sw-hw-reset-compare.html
* igt@xe_pat@xa-app-transient-media-on:
- shard-bmg: NOTRUN -> [SKIP][284] ([Intel XE#7590]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-6/igt@xe_pat@xa-app-transient-media-on.html
* igt@xe_peer2peer@read:
- shard-lnl: NOTRUN -> [SKIP][285] ([Intel XE#1061] / [Intel XE#7326] / [Intel XE#7353]) +1 other test skip
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-7/igt@xe_peer2peer@read.html
* igt@xe_peer2peer@write:
- shard-bmg: NOTRUN -> [SKIP][286] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353]) +1 other test skip
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-1/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-basic:
- shard-lnl: NOTRUN -> [SKIP][287] ([Intel XE#2284] / [Intel XE#366] / [Intel XE#7370]) +7 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-3/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3cold-i2c:
- shard-lnl: NOTRUN -> [SKIP][288] ([Intel XE#5694] / [Intel XE#7370])
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-5/igt@xe_pm@d3cold-i2c.html
- shard-bmg: NOTRUN -> [SKIP][289] ([Intel XE#5694] / [Intel XE#7370])
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-10/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: NOTRUN -> [SKIP][290] ([Intel XE#2284] / [Intel XE#7370]) +8 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-3/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@d3hot-i2c:
- shard-lnl: NOTRUN -> [SKIP][291] ([Intel XE#5742] / [Intel XE#7328] / [Intel XE#7400])
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-2/igt@xe_pm@d3hot-i2c.html
- shard-bmg: NOTRUN -> [SKIP][292] ([Intel XE#5742] / [Intel XE#7328] / [Intel XE#7400])
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-2/igt@xe_pm@d3hot-i2c.html
* igt@xe_pm@s3-mocs:
- shard-lnl: NOTRUN -> [SKIP][293] ([Intel XE#584] / [Intel XE#7369]) +10 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-4/igt@xe_pm@s3-mocs.html
* igt@xe_pm_residency@aspm_link_residency:
- shard-lnl: NOTRUN -> [SKIP][294] ([Intel XE#7271])
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-5/igt@xe_pm_residency@aspm_link_residency.html
* igt@xe_pmu@fn-engine-activity-sched-if-idle:
- shard-lnl: NOTRUN -> [SKIP][295] ([Intel XE#4650] / [Intel XE#7347]) +2 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-1/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
* igt@xe_prefetch_fault@prefetch-fault:
- shard-lnl: NOTRUN -> [SKIP][296] ([Intel XE#7599]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-2/igt@xe_prefetch_fault@prefetch-fault.html
* igt@xe_prefetch_fault@prefetch-fault-svm:
- shard-bmg: NOTRUN -> [SKIP][297] ([Intel XE#7599]) +1 other test skip
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-10/igt@xe_prefetch_fault@prefetch-fault-svm.html
* igt@xe_pxp@display-pxp-fb:
- shard-bmg: NOTRUN -> [SKIP][298] ([Intel XE#4733] / [Intel XE#7417]) +14 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-10/igt@xe_pxp@display-pxp-fb.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][299] ([Intel XE#944]) +15 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-6/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-pxp-status:
- shard-lnl: NOTRUN -> [SKIP][300] ([Intel XE#944]) +16 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-5/igt@xe_query@multigpu-query-pxp-status.html
* igt@xe_sriov_admin@bulk-exec-quantum-vfs-disabled:
- shard-lnl: NOTRUN -> [SKIP][301] ([Intel XE#7174]) +6 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-8/igt@xe_sriov_admin@bulk-exec-quantum-vfs-disabled.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-lnl: NOTRUN -> [SKIP][302] ([Intel XE#4130] / [Intel XE#7366]) +5 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-8/igt@xe_sriov_auto_provisioning@fair-allocation.html
* igt@xe_sriov_auto_provisioning@selfconfig-basic:
- shard-bmg: NOTRUN -> [FAIL][303] ([Intel XE#7992]) +1 other test fail
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-1/igt@xe_sriov_auto_provisioning@selfconfig-basic.html
* igt@xe_sriov_flr@flr-basic:
- shard-lnl: NOTRUN -> [SKIP][304] ([Intel XE#7569])
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-5/igt@xe_sriov_flr@flr-basic.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-lnl: NOTRUN -> [SKIP][305] ([Intel XE#3342]) +1 other test skip
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-1/igt@xe_sriov_flr@flr-vf1-clear.html
- shard-bmg: NOTRUN -> [FAIL][306] ([Intel XE#6569]) +1 other test fail
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-7/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-lnl: NOTRUN -> [SKIP][307] ([Intel XE#4273]) +1 other test skip
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-4/igt@xe_sriov_flr@flr-vfs-parallel.html
* igt@xe_sriov_scheduling@equal-throughput-normal-priority:
- shard-lnl: NOTRUN -> [SKIP][308] ([Intel XE#8339]) +4 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-3/igt@xe_sriov_scheduling@equal-throughput-normal-priority.html
* igt@xe_sriov_vfio@region-info:
- shard-lnl: NOTRUN -> [SKIP][309] ([Intel XE#7724]) +2 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-1/igt@xe_sriov_vfio@region-info.html
* igt@xe_sriov_vram@vf-access-beyond:
- shard-lnl: NOTRUN -> [SKIP][310] ([Intel XE#6376] / [Intel XE#7330] / [Intel XE#7422]) +3 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-3/igt@xe_sriov_vram@vf-access-beyond.html
* igt@xe_survivability@i2c-functionality:
- shard-lnl: NOTRUN -> [SKIP][311] ([Intel XE#8415]) +1 other test skip
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-5/igt@xe_survivability@i2c-functionality.html
* igt@xe_survivability@runtime-survivability:
- shard-bmg: NOTRUN -> [DMESG-WARN][312] ([Intel XE#6627] / [Intel XE#7419])
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-5/igt@xe_survivability@runtime-survivability.html
* igt@xe_vm@out-of-memory:
- shard-lnl: NOTRUN -> [SKIP][313] ([Intel XE#5745] / [Intel XE#7892])
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-7/igt@xe_vm@out-of-memory.html
* igt@xe_vm@overcommit-nonfault-vram-lr-external-nodefer:
- shard-lnl: NOTRUN -> [SKIP][314] ([Intel XE#7892]) +3 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-3/igt@xe_vm@overcommit-nonfault-vram-lr-external-nodefer.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-bmg: NOTRUN -> [DMESG-WARN][315] ([Intel XE#5545])
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-3/igt@xe_wedged@wedged-at-any-timeout.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-bmg: NOTRUN -> [ABORT][316] ([Intel XE#8007])
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-8/igt@xe_wedged@wedged-mode-toggle.html
#### Warnings ####
* igt@xe_module_load@load:
- shard-lnl: ([DMESG-WARN][317], [DMESG-WARN][318], [DMESG-WARN][319], [DMESG-WARN][320], [DMESG-WARN][321], [DMESG-WARN][322], [DMESG-WARN][323], [DMESG-WARN][324], [DMESG-WARN][325], [DMESG-WARN][326], [DMESG-WARN][327], [DMESG-WARN][328], [DMESG-WARN][329], [DMESG-WARN][330], [DMESG-WARN][331], [DMESG-WARN][332], [DMESG-WARN][333], [DMESG-WARN][334], [DMESG-WARN][335], [DMESG-WARN][336], [DMESG-WARN][337], [DMESG-WARN][338], [DMESG-WARN][339], [DMESG-WARN][340], [DMESG-WARN][341]) ([Intel XE#8607]) -> ([PASS][342], [PASS][343], [PASS][344], [PASS][345], [PASS][346], [PASS][347], [SKIP][348], [PASS][349], [PASS][350], [PASS][351], [PASS][352], [PASS][353], [PASS][354], [PASS][355], [PASS][356], [PASS][357], [PASS][358], [PASS][359], [PASS][360], [PASS][361], [PASS][362], [PASS][363], [PASS][364], [PASS][365], [PASS][366], [PASS][367]) ([Intel XE#378] / [Intel XE#7405])
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-lnl-1/igt@xe_module_load@load.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-lnl-1/igt@xe_module_load@load.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-lnl-1/igt@xe_module_load@load.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-lnl-8/igt@xe_module_load@load.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-lnl-8/igt@xe_module_load@load.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-lnl-8/igt@xe_module_load@load.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-lnl-8/igt@xe_module_load@load.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-lnl-4/igt@xe_module_load@load.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-lnl-4/igt@xe_module_load@load.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-lnl-4/igt@xe_module_load@load.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-lnl-4/igt@xe_module_load@load.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-lnl-6/igt@xe_module_load@load.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-lnl-6/igt@xe_module_load@load.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-lnl-3/igt@xe_module_load@load.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-lnl-3/igt@xe_module_load@load.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-lnl-3/igt@xe_module_load@load.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-lnl-3/igt@xe_module_load@load.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-lnl-2/igt@xe_module_load@load.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-lnl-2/igt@xe_module_load@load.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-lnl-7/igt@xe_module_load@load.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-lnl-7/igt@xe_module_load@load.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-lnl-7/igt@xe_module_load@load.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-lnl-7/igt@xe_module_load@load.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-lnl-5/igt@xe_module_load@load.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-lnl-5/igt@xe_module_load@load.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-1/igt@xe_module_load@load.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-1/igt@xe_module_load@load.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-1/igt@xe_module_load@load.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-8/igt@xe_module_load@load.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-8/igt@xe_module_load@load.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-8/igt@xe_module_load@load.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-4/igt@xe_module_load@load.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-4/igt@xe_module_load@load.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-4/igt@xe_module_load@load.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-4/igt@xe_module_load@load.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-6/igt@xe_module_load@load.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-6/igt@xe_module_load@load.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-6/igt@xe_module_load@load.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-3/igt@xe_module_load@load.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-3/igt@xe_module_load@load.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-3/igt@xe_module_load@load.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-2/igt@xe_module_load@load.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-2/igt@xe_module_load@load.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-2/igt@xe_module_load@load.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-7/igt@xe_module_load@load.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-7/igt@xe_module_load@load.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-7/igt@xe_module_load@load.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-5/igt@xe_module_load@load.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-5/igt@xe_module_load@load.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-5/igt@xe_module_load@load.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-lnl-1/igt@xe_module_load@load.html
- shard-bmg: ([DMESG-WARN][368], [DMESG-WARN][369], [DMESG-WARN][370], [DMESG-WARN][371], [DMESG-WARN][372], [DMESG-WARN][373], [DMESG-WARN][374], [DMESG-WARN][375], [DMESG-WARN][376], [DMESG-WARN][377], [DMESG-WARN][378], [DMESG-WARN][379], [DMESG-WARN][380], [DMESG-WARN][381], [DMESG-WARN][382], [DMESG-WARN][383], [DMESG-WARN][384], [DMESG-WARN][385], [DMESG-WARN][386], [DMESG-WARN][387], [DMESG-WARN][388], [DMESG-WARN][389], [DMESG-WARN][390], [DMESG-WARN][391], [DMESG-WARN][392]) ([Intel XE#8607]) -> ([PASS][393], [PASS][394], [PASS][395], [PASS][396], [PASS][397], [PASS][398], [PASS][399], [PASS][400], [PASS][401], [PASS][402], [PASS][403], [PASS][404], [PASS][405], [PASS][406], [PASS][407], [PASS][408], [PASS][409], [PASS][410], [PASS][411], [PASS][412], [PASS][413], [PASS][414], [PASS][415], [SKIP][416], [PASS][417], [PASS][418]) ([Intel XE#2457] / [Intel XE#7405])
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-bmg-4/igt@xe_module_load@load.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-bmg-4/igt@xe_module_load@load.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-bmg-8/igt@xe_module_load@load.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-bmg-8/igt@xe_module_load@load.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-bmg-8/igt@xe_module_load@load.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-bmg-8/igt@xe_module_load@load.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-bmg-10/igt@xe_module_load@load.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-bmg-1/igt@xe_module_load@load.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-bmg-1/igt@xe_module_load@load.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-bmg-1/igt@xe_module_load@load.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-bmg-1/igt@xe_module_load@load.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-bmg-9/igt@xe_module_load@load.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-bmg-9/igt@xe_module_load@load.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-bmg-9/igt@xe_module_load@load.html
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-bmg-9/igt@xe_module_load@load.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-bmg-2/igt@xe_module_load@load.html
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-bmg-2/igt@xe_module_load@load.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-bmg-2/igt@xe_module_load@load.html
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-bmg-2/igt@xe_module_load@load.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-bmg-6/igt@xe_module_load@load.html
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-bmg-3/igt@xe_module_load@load.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-bmg-3/igt@xe_module_load@load.html
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-bmg-3/igt@xe_module_load@load.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-bmg-5/igt@xe_module_load@load.html
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b/shard-bmg-5/igt@xe_module_load@load.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-5/igt@xe_module_load@load.html
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-4/igt@xe_module_load@load.html
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-4/igt@xe_module_load@load.html
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-8/igt@xe_module_load@load.html
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-8/igt@xe_module_load@load.html
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-8/igt@xe_module_load@load.html
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-10/igt@xe_module_load@load.html
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-10/igt@xe_module_load@load.html
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-1/igt@xe_module_load@load.html
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-1/igt@xe_module_load@load.html
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-1/igt@xe_module_load@load.html
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-7/igt@xe_module_load@load.html
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-7/igt@xe_module_load@load.html
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-9/igt@xe_module_load@load.html
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-9/igt@xe_module_load@load.html
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-9/igt@xe_module_load@load.html
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-2/igt@xe_module_load@load.html
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-2/igt@xe_module_load@load.html
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-6/igt@xe_module_load@load.html
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-6/igt@xe_module_load@load.html
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-6/igt@xe_module_load@load.html
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-3/igt@xe_module_load@load.html
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-3/igt@xe_module_load@load.html
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-5/igt@xe_module_load@load.html
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-5/igt@xe_module_load@load.html
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/shard-bmg-5/igt@xe_module_load@load.html
[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#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[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#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[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#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
[Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[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#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
[Intel XE#5447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5447
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
[Intel XE#5745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5745
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5854
[Intel XE#5857]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5857
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[Intel XE#5870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5870
[Intel XE#5873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5873
[Intel XE#5882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5882
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#6011]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6011
[Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126
[Intel XE#6127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6127
[Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196
[Intel XE#6259]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6259
[Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6592]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6592
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627
[Intel XE#6645]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6645
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6813
[Intel XE#6814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6814
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900
[Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
[Intel XE#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927
[Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006
[Intel XE#7008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7008
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086
[Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098
[Intel XE#7173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7173
[Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7227
[Intel XE#7271]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7271
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7294
[Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7312
[Intel XE#7316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7316
[Intel XE#7318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7318
[Intel XE#7319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7319
[Intel XE#7321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7321
[Intel XE#7322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7322
[Intel XE#7323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7323
[Intel XE#7324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7324
[Intel XE#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325
[Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
[Intel XE#7328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7328
[Intel XE#7330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7330
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344
[Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345
[Intel XE#7346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7346
[Intel XE#7347]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7347
[Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
[Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
[Intel XE#7350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7350
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7359
[Intel XE#7360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7360
[Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
[Intel XE#7362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7362
[Intel XE#7366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7366
[Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367
[Intel XE#7368]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7368
[Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
[Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
[Intel XE#7381]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7381
[Intel XE#7382]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7382
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7384]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7384
[Intel XE#7385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7385
[Intel XE#7386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7386
[Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
[Intel XE#7389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7389
[Intel XE#7390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7390
[Intel XE#7391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7391
[Intel XE#7393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393
[Intel XE#7395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7395
[Intel XE#7396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7396
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7400
[Intel XE#7402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7402
[Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
[Intel XE#7406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7406
[Intel XE#7408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7408
[Intel XE#7413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7413
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7419
[Intel XE#7422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7422
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425
[Intel XE#7426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7426
[Intel XE#7428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7428
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7435
[Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7443
[Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444
[Intel XE#7447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7447
[Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448
[Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
[Intel XE#7450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7450
[Intel XE#7453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7453
[Intel XE#7457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7457
[Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466
[Intel XE#7469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7469
[Intel XE#7471]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7471
[Intel XE#7477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7477
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7503
[Intel XE#7569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7569
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591
[Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599
[Intel XE#7622]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7622
[Intel XE#7638]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7638
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#7644]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7644
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695
[Intel XE#7724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7724
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
[Intel XE#7772]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7772
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7794
[Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795
[Intel XE#7850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7850
[Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
[Intel XE#7892]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7892
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#7954]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7954
[Intel XE#7980]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7980
[Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8076]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8076
[Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
[Intel XE#8159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8159
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8303]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8303
[Intel XE#8339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8339
[Intel XE#8348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8348
[Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8365]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8365
[Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369
[Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#8395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8395
[Intel XE#8396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8396
[Intel XE#8397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8397
[Intel XE#8415]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8415
[Intel XE#8428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8428
[Intel XE#8586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8586
[Intel XE#8607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8607
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* Linux: xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b -> xe-pw-170484v1
IGT_9006: 6380a8af26359dd222e22679442272ded836c463 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5411-da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b: da96f9b0a90a3d45db3f3d7002783dbcb1eaa92b
xe-pw-170484v1: 170484v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-170484v1/index.html
[-- Attachment #2: Type: text/html, Size: 143230 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* RE: [PATCH 1/4] drm/i915/cdclk: Use intel_cdclk_ppc() in intel_modeset_readout_hw_state()
2026-07-15 12:09 ` [PATCH 1/4] drm/i915/cdclk: Use intel_cdclk_ppc() in intel_modeset_readout_hw_state() Ville Syrjala
@ 2026-07-16 3:59 ` Garg, Nemesa
0 siblings, 0 replies; 14+ messages in thread
From: Garg, Nemesa @ 2026-07-16 3:59 UTC (permalink / raw)
To: Ville Syrjala, intel-gfx@lists.freedesktop.org
Cc: intel-xe@lists.freedesktop.org
> -----Original Message-----
> From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of Ville
> Syrjala
> Sent: Wednesday, July 15, 2026 5:39 PM
> To: intel-gfx@lists.freedesktop.org
> Cc: intel-xe@lists.freedesktop.org
> Subject: [PATCH 1/4] drm/i915/cdclk: Use intel_cdclk_ppc() in
> intel_modeset_readout_hw_state()
>
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> Replace the hand roller intel_cdclk_ppc() with the real thing in
> intel_modeset_readout_hw_state().
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_cdclk.c | 2 +-
> drivers/gpu/drm/i915/display/intel_cdclk.h | 1 +
> drivers/gpu/drm/i915/display/intel_modeset_setup.c | 12 ++++--------
> 3 files changed, 6 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.c
> b/drivers/gpu/drm/i915/display/intel_cdclk.c
> index d3c5e3438d19..1d7ff2cbaebb 100644
> --- a/drivers/gpu/drm/i915/display/intel_cdclk.c
> +++ b/drivers/gpu/drm/i915/display/intel_cdclk.c
> @@ -2908,7 +2908,7 @@ intel_set_cdclk_post_plane_update(struct
> intel_atomic_state *state) }
>
> /* pixels per CDCLK */
> -static int intel_cdclk_ppc(struct intel_display *display, bool double_wide)
> +int intel_cdclk_ppc(struct intel_display *display, bool double_wide)
> {
> return DISPLAY_VER(display) >= 10 || double_wide ? 2 : 1; } diff --git
> a/drivers/gpu/drm/i915/display/intel_cdclk.h
> b/drivers/gpu/drm/i915/display/intel_cdclk.h
> index 1ff7d078b42c..a60cbf745ee2 100644
> --- a/drivers/gpu/drm/i915/display/intel_cdclk.h
> +++ b/drivers/gpu/drm/i915/display/intel_cdclk.h
> @@ -22,6 +22,7 @@ struct intel_cdclk_config {
> bool joined_mbus;
> };
>
> +int intel_cdclk_ppc(struct intel_display *display, bool double_wide);
> void intel_cdclk_init_hw(struct intel_display *display); void
> intel_cdclk_uninit_hw(struct intel_display *display); void
> intel_init_cdclk_hooks(struct intel_display *display); diff --git
> a/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> b/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> index e27a531e1aa2..14d829171c7d 100644
> --- a/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> +++ b/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> @@ -854,14 +854,10 @@ static void intel_modeset_readout_hw_state(struct
> intel_display *display)
> * FIXME don't have the fb yet, so can't
> * use plane->min_cdclk() :(
> */
> - if (plane_state->uapi.visible && plane->min_cdclk) {
> - if (crtc_state->double_wide ||
> DISPLAY_VER(display) >= 10)
> - crtc_state->plane_min_cdclk[plane-
> >id] =
> - DIV_ROUND_UP(crtc_state-
> >pixel_rate, 2);
> - else
> - crtc_state->plane_min_cdclk[plane-
> >id] =
> - crtc_state->pixel_rate;
> - }
> + if (plane_state->uapi.visible && plane->min_cdclk)
> + crtc_state->plane_min_cdclk[plane->id] =
> + DIV_ROUND_UP(crtc_state-
> >pixel_rate,
> + intel_cdclk_ppc(display,
> crtc_state->double_wide));
LGTM,
Reviewed-by: Nemesa Garg <nemesa.garg@intel.com>
> drm_dbg_kms(display->drm,
> "[PLANE:%d:%s] min_cdclk %d kHz\n",
> plane->base.base.id, plane->base.name,
> --
> 2.54.0
^ permalink raw reply [flat|nested] 14+ messages in thread
* RE: [PATCH 3/4] drm/i915/cdclk: Introduce crtc_state->pixel_rate_cdclk
2026-07-15 12:09 ` [PATCH 3/4] drm/i915/cdclk: Introduce crtc_state->pixel_rate_cdclk Ville Syrjala
@ 2026-07-16 4:00 ` Garg, Nemesa
0 siblings, 0 replies; 14+ messages in thread
From: Garg, Nemesa @ 2026-07-16 4:00 UTC (permalink / raw)
To: Ville Syrjala, intel-gfx@lists.freedesktop.org
Cc: intel-xe@lists.freedesktop.org
> -----Original Message-----
> From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of Ville
> Syrjala
> Sent: Wednesday, July 15, 2026 5:39 PM
> To: intel-gfx@lists.freedesktop.org
> Cc: intel-xe@lists.freedesktop.org
> Subject: [PATCH 3/4] drm/i915/cdclk: Introduce crtc_state->pixel_rate_cdclk
>
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> We'll need to do additional adjustments to the pipe pixel rate for the
> purposes of min CDCLK calculations. Add a new crtc_state->pixel_rate_cdclk
> for that purpose. We'll leave the original crtc_state->pixel_rate for data rate
> related calculations since we presumably don't need those extra adjustments
> there.
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/display/hsw_ips.c | 2 +-
> drivers/gpu/drm/i915/display/i9xx_plane.c | 4 ++--
> drivers/gpu/drm/i915/display/intel_cdclk.c | 2 +-
> drivers/gpu/drm/i915/display/intel_display.c | 8 ++++++--
> .../gpu/drm/i915/display/intel_display_types.h | 7 +++++++
> drivers/gpu/drm/i915/display/intel_fbc.c | 2 +-
> .../gpu/drm/i915/display/intel_modeset_setup.c | 2 +-
> drivers/gpu/drm/i915/display/intel_sprite.c | 18 +++++++++---------
> 8 files changed, 28 insertions(+), 17 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/hsw_ips.c
> b/drivers/gpu/drm/i915/display/hsw_ips.c
> index cbaef3f13f00..f828ec962164 100644
> --- a/drivers/gpu/drm/i915/display/hsw_ips.c
> +++ b/drivers/gpu/drm/i915/display/hsw_ips.c
> @@ -207,7 +207,7 @@ static int _hsw_ips_min_cdclk(const struct
> intel_crtc_state *crtc_state)
> struct intel_display *display = to_intel_display(crtc_state);
>
> if (display->platform.broadwell)
> - return DIV_ROUND_UP(crtc_state->pixel_rate * 100, 95);
> + return DIV_ROUND_UP(crtc_state->pixel_rate_cdclk * 100,
> 95);
>
> /* no IPS specific limits to worry about */
> return 0;
> diff --git a/drivers/gpu/drm/i915/display/i9xx_plane.c
> b/drivers/gpu/drm/i915/display/i9xx_plane.c
> index 70734d32a409..b3dbcd53999a 100644
> --- a/drivers/gpu/drm/i915/display/i9xx_plane.c
> +++ b/drivers/gpu/drm/i915/display/i9xx_plane.c
> @@ -418,13 +418,13 @@ static int i9xx_plane_min_cdclk(const struct
> intel_crtc_state *crtc_state,
> unsigned int num, den;
>
> /*
> - * Note that crtc_state->pixel_rate accounts for both
> + * Note that crtc_state->pixel_rate_cdclk accounts for both
> * horizontal and vertical panel fitter downscaling factors.
> * Pre-HSW bspec tells us to only consider the horizontal
> * downscaling factor here. We ignore that and just consider
> * both for simplicity.
> */
> - pixel_rate = crtc_state->pixel_rate;
> + pixel_rate = crtc_state->pixel_rate_cdclk;
>
> i9xx_plane_ratio(crtc_state, plane_state, &num, &den);
>
> diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.c
> b/drivers/gpu/drm/i915/display/intel_cdclk.c
> index 12bb6c414683..a53d88727177 100644
> --- a/drivers/gpu/drm/i915/display/intel_cdclk.c
> +++ b/drivers/gpu/drm/i915/display/intel_cdclk.c
> @@ -2936,7 +2936,7 @@ static int _intel_pixel_rate_to_cdclk(const struct
> intel_crtc_state *crtc_state,
>
> static int intel_pixel_rate_to_cdclk(const struct intel_crtc_state *crtc_state) {
> - return _intel_pixel_rate_to_cdclk(crtc_state, crtc_state->pixel_rate);
> + return _intel_pixel_rate_to_cdclk(crtc_state,
> +crtc_state->pixel_rate_cdclk);
> }
>
> static int intel_planes_min_cdclk(const struct intel_crtc_state *crtc_state) diff
> --git a/drivers/gpu/drm/i915/display/intel_display.c
> b/drivers/gpu/drm/i915/display/intel_display.c
> index 38763a6802c5..df43be51b3ba 100644
> --- a/drivers/gpu/drm/i915/display/intel_display.c
> +++ b/drivers/gpu/drm/i915/display/intel_display.c
> @@ -2259,13 +2259,16 @@ static void intel_crtc_compute_pixel_rate(struct
> intel_crtc_state *crtc_state) {
> struct intel_display *display = to_intel_display(crtc_state);
>
> - if (HAS_GMCH(display))
> + if (HAS_GMCH(display)) {
> /* FIXME calculate proper pipe pixel rate for GMCH pfit */
> crtc_state->pixel_rate =
> crtc_state->hw.pipe_mode.crtc_clock;
> - else
> + crtc_state->pixel_rate_cdclk = crtc_state->pixel_rate;
> + } else {
> crtc_state->pixel_rate =
> ilk_pipe_pixel_rate(crtc_state);
> + crtc_state->pixel_rate_cdclk = crtc_state->pixel_rate;
> + }
> }
>
> static void intel_joiner_adjust_timings(const struct intel_crtc_state
> *crtc_state, @@ -5382,6 +5385,7 @@ intel_pipe_config_compare(const struct
> intel_crtc_state *current_config,
> PIPE_CONF_CHECK_I(pch_pfit.casf.strength);
>
> PIPE_CONF_CHECK_I(scaler_state.scaler_id);
> + PIPE_CONF_CHECK_I(pixel_rate_cdclk);
> PIPE_CONF_CHECK_I(pixel_rate);
>
> PIPE_CONF_CHECK_X(gamma_mode);
> diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h
> b/drivers/gpu/drm/i915/display/intel_display_types.h
> index 8bd213db5e7a..17336ad6d5e9 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_types.h
> +++ b/drivers/gpu/drm/i915/display/intel_display_types.h
> @@ -1083,6 +1083,13 @@ struct intel_crtc_state {
> */
> unsigned int pixel_rate;
>
> + /*
> + * Pipe pixel rate for CDCLK, adjusted for
> + * panel fitter/pipe scaler downscaling.
> + * CDCLK use cases need further adjustment.
> + */
> + unsigned int pixel_rate_cdclk;
> +
> /* Whether to set up the PCH/FDI. Note that we never allow sharing
> * between pch encoders and cpu encoders. */
> bool has_pch_encoder;
> diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c
> b/drivers/gpu/drm/i915/display/intel_fbc.c
> index a7d02dd6ca96..cd889f7429bb 100644
> --- a/drivers/gpu/drm/i915/display/intel_fbc.c
> +++ b/drivers/gpu/drm/i915/display/intel_fbc.c
> @@ -1567,7 +1567,7 @@ static int _intel_fbc_min_cdclk(const struct
> intel_crtc_state *crtc_state)
>
> /* WaFbcExceedCdClockThreshold:hsw,bdw */
> if (display->platform.haswell || display->platform.broadwell)
> - return DIV_ROUND_UP(crtc_state->pixel_rate * 100, 95);
> + return DIV_ROUND_UP(crtc_state->pixel_rate_cdclk * 100,
> 95);
>
> /* no FBC specific limits to worry about */
> return 0;
> diff --git a/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> b/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> index 14d829171c7d..6aed88173770 100644
> --- a/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> +++ b/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> @@ -856,7 +856,7 @@ static void intel_modeset_readout_hw_state(struct
> intel_display *display)
> */
> if (plane_state->uapi.visible && plane->min_cdclk)
> crtc_state->plane_min_cdclk[plane->id] =
> - DIV_ROUND_UP(crtc_state-
> >pixel_rate,
> + DIV_ROUND_UP(crtc_state-
> >pixel_rate_cdclk,
> intel_cdclk_ppc(display,
> crtc_state->double_wide));
> drm_dbg_kms(display->drm,
> "[PLANE:%d:%s] min_cdclk %d kHz\n", diff -
> -git a/drivers/gpu/drm/i915/display/intel_sprite.c
> b/drivers/gpu/drm/i915/display/intel_sprite.c
> index 6a65f92e8a03..9fe9d2644958 100644
> --- a/drivers/gpu/drm/i915/display/intel_sprite.c
> +++ b/drivers/gpu/drm/i915/display/intel_sprite.c
> @@ -241,13 +241,13 @@ int vlv_plane_min_cdclk(const struct
> intel_crtc_state *crtc_state,
> unsigned int num, den;
>
> /*
> - * Note that crtc_state->pixel_rate accounts for both
> + * Note that crtc_state->pixel_rate_cdclk accounts for both
> * horizontal and vertical panel fitter downscaling factors.
> * Pre-HSW bspec tells us to only consider the horizontal
> * downscaling factor here. We ignore that and just consider
> * both for simplicity.
> */
> - pixel_rate = crtc_state->pixel_rate;
> + pixel_rate = crtc_state->pixel_rate_cdclk;
>
> vlv_plane_ratio(crtc_state, plane_state, &num, &den);
>
> @@ -550,13 +550,13 @@ int ivb_plane_min_cdclk(const struct
> intel_crtc_state *crtc_state,
> unsigned int num, den;
>
> /*
> - * Note that crtc_state->pixel_rate accounts for both
> + * Note that crtc_state->pixel_rate_cdclk accounts for both
> * horizontal and vertical panel fitter downscaling factors.
> * Pre-HSW bspec tells us to only consider the horizontal
> * downscaling factor here. We ignore that and just consider
> * both for simplicity.
> */
> - pixel_rate = crtc_state->pixel_rate;
> + pixel_rate = crtc_state->pixel_rate_cdclk;
>
> ivb_plane_ratio(crtc_state, plane_state, &num, &den);
>
> @@ -570,13 +570,13 @@ static int ivb_sprite_min_cdclk(const struct
> intel_crtc_state *crtc_state,
> unsigned int num, den;
>
> /*
> - * Note that crtc_state->pixel_rate accounts for both
> + * Note that crtc_state->pixel_rate_cdclk accounts for both
> * horizontal and vertical panel fitter downscaling factors.
> * Pre-HSW bspec tells us to only consider the horizontal
> * downscaling factor here. We ignore that and just consider
> * both for simplicity.
> */
> - pixel_rate = crtc_state->pixel_rate;
> + pixel_rate = crtc_state->pixel_rate_cdclk;
>
> src_w = drm_rect_width(&plane_state->uapi.src) >> 16;
> dst_w = drm_rect_width(&plane_state->uapi.dst);
> @@ -629,7 +629,7 @@ static void hsw_plane_ratio(const struct
> intel_crtc_state *crtc_state, int hsw_plane_min_cdclk(const struct
> intel_crtc_state *crtc_state,
> const struct intel_plane_state *plane_state) {
> - unsigned int pixel_rate = crtc_state->pixel_rate;
> + unsigned int pixel_rate = crtc_state->pixel_rate_cdclk;
> unsigned int num, den;
>
> hsw_plane_ratio(crtc_state, plane_state, &num, &den); @@ -918,13
> +918,13 @@ static int g4x_sprite_min_cdclk(const struct intel_crtc_state
> *crtc_state,
> unsigned int limit, decimate;
>
> /*
> - * Note that crtc_state->pixel_rate accounts for both
> + * Note that crtc_state->pixel_rate_cdclk accounts for both
> * horizontal and vertical panel fitter downscaling factors.
> * Pre-HSW bspec tells us to only consider the horizontal
> * downscaling factor here. We ignore that and just consider
> * both for simplicity.
> */
> - pixel_rate = crtc_state->pixel_rate;
> + pixel_rate = crtc_state->pixel_rate_cdclk;
>
LGTM,
Reviewed-by: Nemesa Garg <nemesa.garg@intel.com>
> /* Horizontal downscaling limits the maximum pixel rate */
> hscale = drm_rect_calc_hscale(&plane_state->uapi.src,
> --
> 2.54.0
^ permalink raw reply [flat|nested] 14+ messages in thread
* RE: [PATCH 4/4] drm/i915/cdclk: Deal with 2 PPC hscale issues when calculating min CDCLK
2026-07-15 12:09 ` [PATCH 4/4] drm/i915/cdclk: Deal with 2 PPC hscale issues when calculating min CDCLK Ville Syrjala
@ 2026-07-16 4:01 ` Garg, Nemesa
2026-07-16 10:58 ` Srinivas, Vidya
1 sibling, 0 replies; 14+ messages in thread
From: Garg, Nemesa @ 2026-07-16 4:01 UTC (permalink / raw)
To: Ville Syrjala, intel-gfx@lists.freedesktop.org
Cc: intel-xe@lists.freedesktop.org
> -----Original Message-----
> From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of Ville
> Syrjala
> Sent: Wednesday, July 15, 2026 5:39 PM
> To: intel-gfx@lists.freedesktop.org
> Cc: intel-xe@lists.freedesktop.org
> Subject: [PATCH 4/4] drm/i915/cdclk: Deal with 2 PPC hscale issues when
> calculating min CDCLK
>
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> Double the fractional part of the horizontal scale factor for the purposes of
> min_cdck calculation. This bumps the min CDCLK sufficiently to overcome
> some kind of 2 PPC granularity issue. Without this CDCLK may end up being
> too low and we get underruns with certail horizontal downscale factors.
>
Nit: certain
> The current Bspec formula calls for doubling only the fractional part below
> 0.5, and rounding it to down to a unit fraction. But that formula does not
> result in a sufficient CDCLK bump in a lot of cases. Empirical evidence
> supports doubling the entire fractional part, so let's just do that while we wait
> for further analysis from the hardware team.
>
> Also note that the position of the scaler output window also seems to matter.
> If the output is near the left edge of the screen then lower CDCLK is sufficient,
> but moving the output window further to the right causes underruns unless
> CDCLK is also bumped. Some prefill happening during hblank already?
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_display.c | 26 ++++++++-
> drivers/gpu/drm/i915/display/intel_plane.c | 55 +++++++++++++++++++
> drivers/gpu/drm/i915/display/intel_plane.h | 5 ++
> .../drm/i915/display/skl_universal_plane.c | 6 +-
> 4 files changed, 88 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display.c
> b/drivers/gpu/drm/i915/display/intel_display.c
> index df43be51b3ba..2c55a4818ad7 100644
> --- a/drivers/gpu/drm/i915/display/intel_display.c
> +++ b/drivers/gpu/drm/i915/display/intel_display.c
> @@ -2234,6 +2234,29 @@ static u32 ilk_pipe_pixel_rate(const struct
> intel_crtc_state *crtc_state)
> pixel_rate);
> }
>
> +static u32 ilk_pipe_pixel_rate_cdclk(const struct intel_crtc_state
> +*crtc_state) {
> + struct intel_display *display = to_intel_display(crtc_state);
> + u32 pixel_rate = crtc_state->hw.pipe_mode.crtc_clock;
> + unsigned int ppc = HAS_2PPC(display) ? 2 : 1;
> + struct drm_rect src;
> +
> + /*
> + * We only use IF-ID interlacing. If we ever use
> + * PF-ID we'll need to adjust the pixel_rate here.
> + */
> +
> + if (!crtc_state->pch_pfit.enabled)
> + return pixel_rate;
> +
> + drm_rect_init(&src, 0, 0,
> + drm_rect_width(&crtc_state->pipe_src) << 16,
> + drm_rect_height(&crtc_state->pipe_src) << 16);
> +
> + return intel_adjusted_rate_cdclk(&src, &crtc_state->pch_pfit.dst,
> + pixel_rate, ppc);
> +}
> +
> static void intel_mode_from_crtc_timings(struct drm_display_mode *mode,
> const struct drm_display_mode
> *timings) { @@ -2267,7 +2290,8 @@ static void
> intel_crtc_compute_pixel_rate(struct intel_crtc_state *crtc_state)
> } else {
> crtc_state->pixel_rate =
> ilk_pipe_pixel_rate(crtc_state);
> - crtc_state->pixel_rate_cdclk = crtc_state->pixel_rate;
> + crtc_state->pixel_rate_cdclk =
> + ilk_pipe_pixel_rate_cdclk(crtc_state);
> }
> }
>
> diff --git a/drivers/gpu/drm/i915/display/intel_plane.c
> b/drivers/gpu/drm/i915/display/intel_plane.c
> index a440f92ff00c..47c3e0c157b6 100644
> --- a/drivers/gpu/drm/i915/display/intel_plane.c
> +++ b/drivers/gpu/drm/i915/display/intel_plane.c
> @@ -264,6 +264,50 @@ unsigned int intel_adjusted_rate(const struct
> drm_rect *src,
> dst_w * dst_h);
> }
>
> +static unsigned int hscale_cdclk(const struct drm_rect *src,
> + const struct drm_rect *dst,
> + unsigned int ppc)
> +{
> + unsigned int hscale;
> +
> + hscale = drm_rect_calc_hscale(src, dst, 0, INT_MAX);
> + hscale = max(hscale, 0x10000);
> +
> + /*
> + * Double the fractional part due to some 2 PPC granularity issue
> + *
> + * FIXME: BSpec calls for doubling only the <0.5 fractional part,
> + * and rounding it down to a unit fraction. In practice that is
> + * not sufficient, and we need a more aggressive CDCLK bump in
> + * many cases. The updated formula was derived empirically.
> + * This may need to be updated once we have better undestading
> + * of what's happening in the hardware...
> + */
> + return (hscale & ~0xffff) + ppc * (hscale & 0xffff); }
> +
> +static unsigned int vscale_cdclk(const struct drm_rect *src,
> + const struct drm_rect *dst)
> +{
> + unsigned int vscale;
> +
> + vscale = drm_rect_calc_vscale(src, dst,0, INT_MAX);
> + vscale = max(vscale, 0x10000);
> +
> + return vscale;
> +}
> +
> +unsigned int intel_adjusted_rate_cdclk(const struct drm_rect *src,
> + const struct drm_rect *dst,
> + unsigned int rate,
> + unsigned int ppc)
> +{
> + unsigned int hscale = hscale_cdclk(src, dst, ppc);
> + unsigned int vscale = vscale_cdclk(src, dst);
> +
> + return DIV64_U64_ROUND_UP((u64) rate * hscale * vscale, 1ull <<
> 32); }
> +
> unsigned int intel_plane_pixel_rate(const struct intel_crtc_state *crtc_state,
> const struct intel_plane_state *plane_state)
> { @@ -284,6 +328,17 @@ unsigned int intel_plane_pixel_rate(const struct
> intel_crtc_state *crtc_state,
> crtc_state->pixel_rate);
> }
>
> +unsigned int intel_plane_pixel_rate_cdclk(const struct intel_crtc_state
> *crtc_state,
> + const struct intel_plane_state
> *plane_state) {
> + struct intel_display *display = to_intel_display(crtc_state);
> + unsigned int ppc = HAS_2PPC(display) ? 2 : 1;
> +
> + return intel_adjusted_rate_cdclk(&plane_state->uapi.src,
> + &plane_state->uapi.dst,
> + crtc_state->pixel_rate_cdclk, ppc); }
> +
> unsigned int intel_plane_data_rate(const struct intel_crtc_state *crtc_state,
> const struct intel_plane_state *plane_state,
> int color_plane)
> diff --git a/drivers/gpu/drm/i915/display/intel_plane.h
> b/drivers/gpu/drm/i915/display/intel_plane.h
> index 31a6229aea73..dba2be24aae2 100644
> --- a/drivers/gpu/drm/i915/display/intel_plane.h
> +++ b/drivers/gpu/drm/i915/display/intel_plane.h
> @@ -29,8 +29,13 @@ bool intel_plane_can_async_flip(struct intel_plane
> *plane, unsigned int intel_adjusted_rate(const struct drm_rect *src,
> const struct drm_rect *dst,
> unsigned int rate);
> +unsigned int intel_adjusted_rate_cdclk(const struct drm_rect *src,
> + const struct drm_rect *dst,
> + unsigned int rate, unsigned int ppc);
> unsigned int intel_plane_pixel_rate(const struct intel_crtc_state *crtc_state,
> const struct intel_plane_state
> *plane_state);
> +unsigned int intel_plane_pixel_rate_cdclk(const struct intel_crtc_state
> *crtc_state,
> + const struct intel_plane_state
> *plane_state);
>
> unsigned int intel_plane_data_rate(const struct intel_crtc_state *crtc_state,
> const struct intel_plane_state *plane_state,
> diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c
> b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> index 164b7d61c9a3..b246fc48558b 100644
> --- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
> +++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> @@ -266,7 +266,7 @@ bool icl_is_hdr_plane(struct intel_display *display,
> enum plane_id plane_id) static int icl_plane_min_cdclk(const struct
> intel_crtc_state *crtc_state,
> const struct intel_plane_state *plane_state) {
> - unsigned int pixel_rate = intel_plane_pixel_rate(crtc_state,
> plane_state);
> + unsigned int pixel_rate = intel_plane_pixel_rate_cdclk(crtc_state,
> +plane_state);
>
> /* two pixels per clock */
> return DIV_ROUND_UP(pixel_rate, 2);
> @@ -290,7 +290,7 @@ glk_plane_ratio(const struct intel_plane_state
> *plane_state, static int glk_plane_min_cdclk(const struct intel_crtc_state
> *crtc_state,
> const struct intel_plane_state *plane_state) {
> - unsigned int pixel_rate = intel_plane_pixel_rate(crtc_state,
> plane_state);
> + unsigned int pixel_rate = intel_plane_pixel_rate_cdclk(crtc_state,
> +plane_state);
> unsigned int num, den;
>
> glk_plane_ratio(plane_state, &num, &den); @@ -317,7 +317,7 @@
> skl_plane_ratio(const struct intel_plane_state *plane_state, static int
> skl_plane_min_cdclk(const struct intel_crtc_state *crtc_state,
> const struct intel_plane_state *plane_state) {
> - unsigned int pixel_rate = intel_plane_pixel_rate(crtc_state,
> plane_state);
> + unsigned int pixel_rate = intel_plane_pixel_rate_cdclk(crtc_state,
> +plane_state);
> unsigned int num, den;
>
> skl_plane_ratio(plane_state, &num, &den);
LGTM,
Reviewed-by: Nemesa Garg <nemesa.garg@intel.com>
> --
> 2.54.0
^ permalink raw reply [flat|nested] 14+ messages in thread
* RE: [PATCH 2/4] drm/i915/cdclk: Introduce HAS_2PPC()
2026-07-15 12:09 ` [PATCH 2/4] drm/i915/cdclk: Introduce HAS_2PPC() Ville Syrjala
@ 2026-07-16 4:03 ` Garg, Nemesa
0 siblings, 0 replies; 14+ messages in thread
From: Garg, Nemesa @ 2026-07-16 4:03 UTC (permalink / raw)
To: Ville Syrjala, intel-gfx@lists.freedesktop.org
Cc: intel-xe@lists.freedesktop.org
> -----Original Message-----
> From: Intel-xe <intel-xe-bounces@lists.freedesktop.org> On Behalf Of Ville
> Syrjala
> Sent: Wednesday, July 15, 2026 5:39 PM
> To: intel-gfx@lists.freedesktop.org
> Cc: intel-xe@lists.freedesktop.org
> Subject: [PATCH 2/4] drm/i915/cdclk: Introduce HAS_2PPC()
>
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> We'll need to check for the "does the platform do 2 pixels per clock?"
> thing in a few places. Add a feature macro for it.
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_cdclk.c | 2 +-
> drivers/gpu/drm/i915/display/intel_display_device.h | 1 +
> 2 files changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.c
> b/drivers/gpu/drm/i915/display/intel_cdclk.c
> index 1d7ff2cbaebb..12bb6c414683 100644
> --- a/drivers/gpu/drm/i915/display/intel_cdclk.c
> +++ b/drivers/gpu/drm/i915/display/intel_cdclk.c
> @@ -2910,7 +2910,7 @@ intel_set_cdclk_post_plane_update(struct
> intel_atomic_state *state)
> /* pixels per CDCLK */
> int intel_cdclk_ppc(struct intel_display *display, bool double_wide) {
> - return DISPLAY_VER(display) >= 10 || double_wide ? 2 : 1;
> + return HAS_2PPC(display) || double_wide ? 2 : 1;
> }
>
> /* max pixel rate as % of CDCLK (not accounting for PPC) */ diff --git
> a/drivers/gpu/drm/i915/display/intel_display_device.h
> b/drivers/gpu/drm/i915/display/intel_display_device.h
> index 9aeba329b9bd..7121e7cd9512 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_device.h
> +++ b/drivers/gpu/drm/i915/display/intel_display_device.h
> @@ -146,6 +146,7 @@ struct intel_display_platforms {
> func(supports_tv);
>
> #define HAS_128B_Y_TILING(__display) (!(__display)->platform.i915g
> && !(__display)->platform.i915gm)
> +#define HAS_2PPC(__display) (DISPLAY_VER(__display) >= 10)
> #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)
> --
LGTM,
Reviewed-by: Nemesa Garg <nemesa.garg@intel.com>
> 2.54.0
^ permalink raw reply [flat|nested] 14+ messages in thread
* RE: [PATCH 4/4] drm/i915/cdclk: Deal with 2 PPC hscale issues when calculating min CDCLK
2026-07-15 12:09 ` [PATCH 4/4] drm/i915/cdclk: Deal with 2 PPC hscale issues when calculating min CDCLK Ville Syrjala
2026-07-16 4:01 ` Garg, Nemesa
@ 2026-07-16 10:58 ` Srinivas, Vidya
1 sibling, 0 replies; 14+ messages in thread
From: Srinivas, Vidya @ 2026-07-16 10:58 UTC (permalink / raw)
To: Ville Syrjala, intel-gfx@lists.freedesktop.org
Cc: intel-xe@lists.freedesktop.org
Hello Ville
Thank you very much Ville for the patch series.
Tested-by: Vidya Srinivas <vidya.srinivas@intel.com>
> -----Original Message-----
> From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of Ville
> Syrjala
> Sent: 15 July 2026 17:39
> To: intel-gfx@lists.freedesktop.org
> Cc: intel-xe@lists.freedesktop.org
> Subject: [PATCH 4/4] drm/i915/cdclk: Deal with 2 PPC hscale issues when
> calculating min CDCLK
>
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> Double the fractional part of the horizontal scale factor for the purposes of
> min_cdck calculation. This bumps the min CDCLK sufficiently to overcome
> some kind of 2 PPC granularity issue. Without this CDCLK may end up being
> too low and we get underruns with certail horizontal downscale factors.
>
> The current Bspec formula calls for doubling only the fractional part below
> 0.5, and rounding it to down to a unit fraction. But that formula does not
> result in a sufficient CDCLK bump in a lot of cases. Empirical evidence
> supports doubling the entire fractional part, so let's just do that while we wait
> for further analysis from the hardware team.
>
> Also note that the position of the scaler output window also seems to matter.
> If the output is near the left edge of the screen then lower CDCLK is sufficient,
> but moving the output window further to the right causes underruns unless
> CDCLK is also bumped. Some prefill happening during hblank already?
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_display.c | 26 ++++++++-
> drivers/gpu/drm/i915/display/intel_plane.c | 55 +++++++++++++++++++
> drivers/gpu/drm/i915/display/intel_plane.h | 5 ++
> .../drm/i915/display/skl_universal_plane.c | 6 +-
> 4 files changed, 88 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display.c
> b/drivers/gpu/drm/i915/display/intel_display.c
> index df43be51b3ba..2c55a4818ad7 100644
> --- a/drivers/gpu/drm/i915/display/intel_display.c
> +++ b/drivers/gpu/drm/i915/display/intel_display.c
> @@ -2234,6 +2234,29 @@ static u32 ilk_pipe_pixel_rate(const struct
> intel_crtc_state *crtc_state)
> pixel_rate);
> }
>
> +static u32 ilk_pipe_pixel_rate_cdclk(const struct intel_crtc_state
> +*crtc_state) {
> + struct intel_display *display = to_intel_display(crtc_state);
> + u32 pixel_rate = crtc_state->hw.pipe_mode.crtc_clock;
> + unsigned int ppc = HAS_2PPC(display) ? 2 : 1;
> + struct drm_rect src;
> +
> + /*
> + * We only use IF-ID interlacing. If we ever use
> + * PF-ID we'll need to adjust the pixel_rate here.
> + */
> +
> + if (!crtc_state->pch_pfit.enabled)
> + return pixel_rate;
> +
> + drm_rect_init(&src, 0, 0,
> + drm_rect_width(&crtc_state->pipe_src) << 16,
> + drm_rect_height(&crtc_state->pipe_src) << 16);
> +
> + return intel_adjusted_rate_cdclk(&src, &crtc_state->pch_pfit.dst,
> + pixel_rate, ppc);
> +}
> +
> static void intel_mode_from_crtc_timings(struct drm_display_mode *mode,
> const struct drm_display_mode
> *timings) { @@ -2267,7 +2290,8 @@ static void
> intel_crtc_compute_pixel_rate(struct intel_crtc_state *crtc_state)
> } else {
> crtc_state->pixel_rate =
> ilk_pipe_pixel_rate(crtc_state);
> - crtc_state->pixel_rate_cdclk = crtc_state->pixel_rate;
> + crtc_state->pixel_rate_cdclk =
> + ilk_pipe_pixel_rate_cdclk(crtc_state);
> }
> }
>
> diff --git a/drivers/gpu/drm/i915/display/intel_plane.c
> b/drivers/gpu/drm/i915/display/intel_plane.c
> index a440f92ff00c..47c3e0c157b6 100644
> --- a/drivers/gpu/drm/i915/display/intel_plane.c
> +++ b/drivers/gpu/drm/i915/display/intel_plane.c
> @@ -264,6 +264,50 @@ unsigned int intel_adjusted_rate(const struct
> drm_rect *src,
> dst_w * dst_h);
> }
>
> +static unsigned int hscale_cdclk(const struct drm_rect *src,
> + const struct drm_rect *dst,
> + unsigned int ppc)
> +{
> + unsigned int hscale;
> +
> + hscale = drm_rect_calc_hscale(src, dst, 0, INT_MAX);
> + hscale = max(hscale, 0x10000);
> +
> + /*
> + * Double the fractional part due to some 2 PPC granularity issue
> + *
> + * FIXME: BSpec calls for doubling only the <0.5 fractional part,
> + * and rounding it down to a unit fraction. In practice that is
> + * not sufficient, and we need a more aggressive CDCLK bump in
> + * many cases. The updated formula was derived empirically.
> + * This may need to be updated once we have better undestading
> + * of what's happening in the hardware...
> + */
> + return (hscale & ~0xffff) + ppc * (hscale & 0xffff); }
> +
> +static unsigned int vscale_cdclk(const struct drm_rect *src,
> + const struct drm_rect *dst)
> +{
> + unsigned int vscale;
> +
> + vscale = drm_rect_calc_vscale(src, dst,0, INT_MAX);
> + vscale = max(vscale, 0x10000);
> +
> + return vscale;
> +}
> +
> +unsigned int intel_adjusted_rate_cdclk(const struct drm_rect *src,
> + const struct drm_rect *dst,
> + unsigned int rate,
> + unsigned int ppc)
> +{
> + unsigned int hscale = hscale_cdclk(src, dst, ppc);
> + unsigned int vscale = vscale_cdclk(src, dst);
> +
> + return DIV64_U64_ROUND_UP((u64) rate * hscale * vscale, 1ull <<
> 32); }
> +
> unsigned int intel_plane_pixel_rate(const struct intel_crtc_state *crtc_state,
> const struct intel_plane_state *plane_state)
> { @@ -284,6 +328,17 @@ unsigned int intel_plane_pixel_rate(const struct
> intel_crtc_state *crtc_state,
> crtc_state->pixel_rate);
> }
>
> +unsigned int intel_plane_pixel_rate_cdclk(const struct intel_crtc_state
> *crtc_state,
> + const struct intel_plane_state
> *plane_state) {
> + struct intel_display *display = to_intel_display(crtc_state);
> + unsigned int ppc = HAS_2PPC(display) ? 2 : 1;
> +
> + return intel_adjusted_rate_cdclk(&plane_state->uapi.src,
> + &plane_state->uapi.dst,
> + crtc_state->pixel_rate_cdclk, ppc); }
> +
> unsigned int intel_plane_data_rate(const struct intel_crtc_state *crtc_state,
> const struct intel_plane_state *plane_state,
> int color_plane)
> diff --git a/drivers/gpu/drm/i915/display/intel_plane.h
> b/drivers/gpu/drm/i915/display/intel_plane.h
> index 31a6229aea73..dba2be24aae2 100644
> --- a/drivers/gpu/drm/i915/display/intel_plane.h
> +++ b/drivers/gpu/drm/i915/display/intel_plane.h
> @@ -29,8 +29,13 @@ bool intel_plane_can_async_flip(struct intel_plane
> *plane, unsigned int intel_adjusted_rate(const struct drm_rect *src,
> const struct drm_rect *dst,
> unsigned int rate);
> +unsigned int intel_adjusted_rate_cdclk(const struct drm_rect *src,
> + const struct drm_rect *dst,
> + unsigned int rate, unsigned int ppc);
> unsigned int intel_plane_pixel_rate(const struct intel_crtc_state *crtc_state,
> const struct intel_plane_state
> *plane_state);
> +unsigned int intel_plane_pixel_rate_cdclk(const struct intel_crtc_state
> *crtc_state,
> + const struct intel_plane_state
> *plane_state);
>
> unsigned int intel_plane_data_rate(const struct intel_crtc_state *crtc_state,
> const struct intel_plane_state *plane_state,
> diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c
> b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> index 164b7d61c9a3..b246fc48558b 100644
> --- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
> +++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> @@ -266,7 +266,7 @@ bool icl_is_hdr_plane(struct intel_display *display,
> enum plane_id plane_id) static int icl_plane_min_cdclk(const struct
> intel_crtc_state *crtc_state,
> const struct intel_plane_state *plane_state) {
> - unsigned int pixel_rate = intel_plane_pixel_rate(crtc_state,
> plane_state);
> + unsigned int pixel_rate = intel_plane_pixel_rate_cdclk(crtc_state,
> +plane_state);
>
> /* two pixels per clock */
> return DIV_ROUND_UP(pixel_rate, 2);
> @@ -290,7 +290,7 @@ glk_plane_ratio(const struct intel_plane_state
> *plane_state, static int glk_plane_min_cdclk(const struct intel_crtc_state
> *crtc_state,
> const struct intel_plane_state *plane_state) {
> - unsigned int pixel_rate = intel_plane_pixel_rate(crtc_state,
> plane_state);
> + unsigned int pixel_rate = intel_plane_pixel_rate_cdclk(crtc_state,
> +plane_state);
> unsigned int num, den;
>
> glk_plane_ratio(plane_state, &num, &den); @@ -317,7 +317,7 @@
> skl_plane_ratio(const struct intel_plane_state *plane_state, static int
> skl_plane_min_cdclk(const struct intel_crtc_state *crtc_state,
> const struct intel_plane_state *plane_state) {
> - unsigned int pixel_rate = intel_plane_pixel_rate(crtc_state,
> plane_state);
> + unsigned int pixel_rate = intel_plane_pixel_rate_cdclk(crtc_state,
> +plane_state);
> unsigned int num, den;
>
> skl_plane_ratio(plane_state, &num, &den);
> --
> 2.54.0
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2026-07-16 10:58 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-15 12:09 [PATCH 0/4] drm/i915/cdclk: Workaround some kind of scaler 2PPC issue Ville Syrjala
2026-07-15 12:09 ` [PATCH 1/4] drm/i915/cdclk: Use intel_cdclk_ppc() in intel_modeset_readout_hw_state() Ville Syrjala
2026-07-16 3:59 ` Garg, Nemesa
2026-07-15 12:09 ` [PATCH 2/4] drm/i915/cdclk: Introduce HAS_2PPC() Ville Syrjala
2026-07-16 4:03 ` Garg, Nemesa
2026-07-15 12:09 ` [PATCH 3/4] drm/i915/cdclk: Introduce crtc_state->pixel_rate_cdclk Ville Syrjala
2026-07-16 4:00 ` Garg, Nemesa
2026-07-15 12:09 ` [PATCH 4/4] drm/i915/cdclk: Deal with 2 PPC hscale issues when calculating min CDCLK Ville Syrjala
2026-07-16 4:01 ` Garg, Nemesa
2026-07-16 10:58 ` Srinivas, Vidya
2026-07-15 13:28 ` ✗ CI.checkpatch: warning for drm/i915/cdclk: Workaround some kind of scaler 2PPC issue Patchwork
2026-07-15 13:29 ` ✓ CI.KUnit: success " Patchwork
2026-07-15 14:06 ` ✓ Xe.CI.BAT: " Patchwork
2026-07-15 15:53 ` ✗ Xe.CI.FULL: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox