* [PATCHv3] drm/i915/dp: Guarantee a minimum HBlank time
@ 2024-10-28 6:14 Arun R Murthy
2024-10-28 6:47 ` Srikanth V, NagaVenkata
` (6 more replies)
0 siblings, 7 replies; 9+ messages in thread
From: Arun R Murthy @ 2024-10-28 6:14 UTC (permalink / raw)
To: intel-xe, intel-gfx; +Cc: jani.nikula, Arun R Murthy
Mandate a minimum Hblank symbol cycle count between BS and BE in 8b/10b
MST and 12b/132b mode.
Spec: DP2.1a
v2: Affine calculation/updation of min HBlank to dp_mst (Jani)
v3: moved min_hblank from struct intel_dp to intel_crtc_state (Jani)
Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
---
drivers/gpu/drm/i915/display/intel_atomic.c | 1 +
drivers/gpu/drm/i915/display/intel_crtc.c | 1 +
.../drm/i915/display/intel_display_types.h | 1 +
drivers/gpu/drm/i915/display/intel_dp_mst.c | 28 +++++++++++++++++++
drivers/gpu/drm/i915/i915_reg.h | 4 +++
5 files changed, 35 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_atomic.c b/drivers/gpu/drm/i915/display/intel_atomic.c
index 03dc54c802d3..24aa079efcad 100644
--- a/drivers/gpu/drm/i915/display/intel_atomic.c
+++ b/drivers/gpu/drm/i915/display/intel_atomic.c
@@ -278,6 +278,7 @@ intel_crtc_duplicate_state(struct drm_crtc *crtc)
crtc_state->dsb_color_vblank = NULL;
crtc_state->dsb_commit = NULL;
crtc_state->use_dsb = false;
+ crtc_state->min_hblank = 0;
return &crtc_state->uapi;
}
diff --git a/drivers/gpu/drm/i915/display/intel_crtc.c b/drivers/gpu/drm/i915/display/intel_crtc.c
index 3c9168a57f38..472f3010bce4 100644
--- a/drivers/gpu/drm/i915/display/intel_crtc.c
+++ b/drivers/gpu/drm/i915/display/intel_crtc.c
@@ -184,6 +184,7 @@ void intel_crtc_state_reset(struct intel_crtc_state *crtc_state,
crtc_state->scaler_state.scaler_id = -1;
crtc_state->mst_master_transcoder = INVALID_TRANSCODER;
crtc_state->max_link_bpp_x16 = INT_MAX;
+ crtc_state->min_hblank = 0;
}
static struct intel_crtc *intel_crtc_alloc(void)
diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h
index 2bb1fa64da2f..7f631fef128e 100644
--- a/drivers/gpu/drm/i915/display/intel_display_types.h
+++ b/drivers/gpu/drm/i915/display/intel_display_types.h
@@ -1075,6 +1075,7 @@ struct intel_crtc_state {
int max_link_bpp_x16; /* in 1/16 bpp units */
int pipe_bpp; /* in 1 bpp units */
+ int min_hblank; /* min HBlank for DP2.1 */
struct intel_link_m_n dp_m_n;
/* m2_n2 for eDP downclock */
diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c b/drivers/gpu/drm/i915/display/intel_dp_mst.c
index 1a2ff3e1cb68..2e088760a23a 100644
--- a/drivers/gpu/drm/i915/display/intel_dp_mst.c
+++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c
@@ -161,6 +161,28 @@ static int intel_dp_mst_dsc_get_slice_count(const struct intel_connector *connec
num_joined_pipes);
}
+static void intel_dp_mst_compute_min_hblank(struct intel_crtc_state *crtc_state,
+ struct intel_connector *intel_connector,
+ int bpp_x16)
+{
+ struct intel_encoder *intel_encoder = intel_connector->encoder;
+ struct intel_display *intel_display = to_intel_display(intel_encoder);
+ const struct drm_display_mode *adjusted_mode =
+ &crtc_state->hw.adjusted_mode;
+ u32 symbol_size = intel_dp_is_uhbr(crtc_state) ? 32 : 8;
+ u32 hblank;
+
+ if (DISPLAY_VER(intel_display) < 20)
+ return;
+
+ /* Calculate min Hblank Link Layer Symbol Cycle Count for 8b/10b MST & 128b/132b */
+ hblank = DIV_ROUND_UP((DIV_ROUND_UP(adjusted_mode->htotal - adjusted_mode->hdisplay, 4) * bpp_x16), symbol_size);
+ if (intel_dp_is_uhbr(crtc_state))
+ crtc_state->min_hblank = (hblank > 5) ? hblank : 5;
+ else
+ crtc_state->min_hblank = (hblank > 3) ? hblank : 3;
+}
+
static int intel_dp_mst_find_vcpi_slots_for_bpp(struct intel_encoder *encoder,
struct intel_crtc_state *crtc_state,
int max_bpp,
@@ -238,6 +260,8 @@ static int intel_dp_mst_find_vcpi_slots_for_bpp(struct intel_encoder *encoder,
remote_bw_overhead = intel_dp_mst_bw_overhead(crtc_state, connector,
true, dsc_slice_count, link_bpp_x16);
+ intel_dp_mst_compute_min_hblank(crtc_state, connector, link_bpp_x16);
+
intel_dp_mst_compute_m_n(crtc_state, connector,
local_bw_overhead,
link_bpp_x16,
@@ -1292,6 +1316,10 @@ static void intel_mst_enable_dp(struct intel_atomic_state *state,
TRANS_DP2_VFREQ_PIXEL_CLOCK(crtc_clock_hz & 0xffffff));
}
+ if (DISPLAY_VER(dev_priv) >= 20)
+ intel_de_write(dev_priv, DP_MIN_HBLANK_CTL(dev_priv, trans),
+ pipe_config->min_hblank);
+
enable_bs_jitter_was(pipe_config);
intel_ddi_enable_transcoder_func(encoder, pipe_config);
diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h
index 405f409e9761..8aeed48f9170 100644
--- a/drivers/gpu/drm/i915/i915_reg.h
+++ b/drivers/gpu/drm/i915/i915_reg.h
@@ -1147,6 +1147,10 @@
#define _TRANS_MULT_B 0x6102c
#define TRANS_MULT(dev_priv, trans) _MMIO_TRANS2(dev_priv, (trans), _TRANS_MULT_A)
+#define _DP_MIN_HBLANK_CTL_A 0x600ac
+#define _DP_MIN_HBLANK_CTL_B 0x610ac
+#define DP_MIN_HBLANK_CTL(dev_priv, trans) _MMIO_TRANS2(dev_priv, (trans), _DP_MIN_HBLANK_CTL_A)
+
/* VGA port control */
#define ADPA _MMIO(0x61100)
#define PCH_ADPA _MMIO(0xe1100)
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread* RE: [PATCHv3] drm/i915/dp: Guarantee a minimum HBlank time 2024-10-28 6:14 [PATCHv3] drm/i915/dp: Guarantee a minimum HBlank time Arun R Murthy @ 2024-10-28 6:47 ` Srikanth V, NagaVenkata 2024-10-28 12:56 ` Jani Nikula ` (5 subsequent siblings) 6 siblings, 0 replies; 9+ messages in thread From: Srikanth V, NagaVenkata @ 2024-10-28 6:47 UTC (permalink / raw) To: Murthy, Arun R, intel-xe@lists.freedesktop.org, intel-gfx@lists.freedesktop.org Cc: Nikula, Jani, Murthy, Arun R > -----Original Message----- > From: Intel-xe <intel-xe-bounces@lists.freedesktop.org> On Behalf Of Arun R > Murthy > Sent: Monday, October 28, 2024 11:44 AM > To: intel-xe@lists.freedesktop.org; intel-gfx@lists.freedesktop.org > Cc: Nikula, Jani <jani.nikula@intel.com>; Murthy, Arun R > <arun.r.murthy@intel.com> > Subject: [PATCHv3] drm/i915/dp: Guarantee a minimum HBlank time > > Mandate a minimum Hblank symbol cycle count between BS and BE in 8b/10b > MST and 12b/132b mode. > Spec: DP2.1a > > v2: Affine calculation/updation of min HBlank to dp_mst (Jani) > v3: moved min_hblank from struct intel_dp to intel_crtc_state (Jani) > > Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com> > --- > drivers/gpu/drm/i915/display/intel_atomic.c | 1 + > drivers/gpu/drm/i915/display/intel_crtc.c | 1 + > .../drm/i915/display/intel_display_types.h | 1 + > drivers/gpu/drm/i915/display/intel_dp_mst.c | 28 +++++++++++++++++++ > drivers/gpu/drm/i915/i915_reg.h | 4 +++ > 5 files changed, 35 insertions(+) > > diff --git a/drivers/gpu/drm/i915/display/intel_atomic.c > b/drivers/gpu/drm/i915/display/intel_atomic.c > index 03dc54c802d3..24aa079efcad 100644 > --- a/drivers/gpu/drm/i915/display/intel_atomic.c > +++ b/drivers/gpu/drm/i915/display/intel_atomic.c > @@ -278,6 +278,7 @@ intel_crtc_duplicate_state(struct drm_crtc *crtc) > crtc_state->dsb_color_vblank = NULL; > crtc_state->dsb_commit = NULL; > crtc_state->use_dsb = false; > + crtc_state->min_hblank = 0; > > return &crtc_state->uapi; > } > diff --git a/drivers/gpu/drm/i915/display/intel_crtc.c > b/drivers/gpu/drm/i915/display/intel_crtc.c > index 3c9168a57f38..472f3010bce4 100644 > --- a/drivers/gpu/drm/i915/display/intel_crtc.c > +++ b/drivers/gpu/drm/i915/display/intel_crtc.c > @@ -184,6 +184,7 @@ void intel_crtc_state_reset(struct intel_crtc_state > *crtc_state, > crtc_state->scaler_state.scaler_id = -1; > crtc_state->mst_master_transcoder = INVALID_TRANSCODER; > crtc_state->max_link_bpp_x16 = INT_MAX; > + crtc_state->min_hblank = 0; > } > > static struct intel_crtc *intel_crtc_alloc(void) diff --git > a/drivers/gpu/drm/i915/display/intel_display_types.h > b/drivers/gpu/drm/i915/display/intel_display_types.h > index 2bb1fa64da2f..7f631fef128e 100644 > --- a/drivers/gpu/drm/i915/display/intel_display_types.h > +++ b/drivers/gpu/drm/i915/display/intel_display_types.h > @@ -1075,6 +1075,7 @@ struct intel_crtc_state { > > int max_link_bpp_x16; /* in 1/16 bpp units */ > int pipe_bpp; /* in 1 bpp units */ > + int min_hblank; /* min HBlank for DP2.1 */ > struct intel_link_m_n dp_m_n; > > /* m2_n2 for eDP downclock */ > diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c > b/drivers/gpu/drm/i915/display/intel_dp_mst.c > index 1a2ff3e1cb68..2e088760a23a 100644 > --- a/drivers/gpu/drm/i915/display/intel_dp_mst.c > +++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c > @@ -161,6 +161,28 @@ static int intel_dp_mst_dsc_get_slice_count(const > struct intel_connector *connec > num_joined_pipes); > } > > +static void intel_dp_mst_compute_min_hblank(struct intel_crtc_state > *crtc_state, > + struct intel_connector > *intel_connector, > + int bpp_x16) > +{ > + struct intel_encoder *intel_encoder = intel_connector->encoder; > + struct intel_display *intel_display = to_intel_display(intel_encoder); > + const struct drm_display_mode *adjusted_mode = > + &crtc_state->hw.adjusted_mode; > + u32 symbol_size = intel_dp_is_uhbr(crtc_state) ? 32 : 8; > + u32 hblank; > + > + if (DISPLAY_VER(intel_display) < 20) > + return; > + > + /* Calculate min Hblank Link Layer Symbol Cycle Count for 8b/10b MST > & 128b/132b */ > + hblank = DIV_ROUND_UP((DIV_ROUND_UP(adjusted_mode->htotal - > adjusted_mode->hdisplay, 4) * bpp_x16), symbol_size); > + if (intel_dp_is_uhbr(crtc_state)) > + crtc_state->min_hblank = (hblank > 5) ? hblank : 5; > + else > + crtc_state->min_hblank = (hblank > 3) ? hblank : 3; } > + > static int intel_dp_mst_find_vcpi_slots_for_bpp(struct intel_encoder *encoder, > struct intel_crtc_state > *crtc_state, > int max_bpp, > @@ -238,6 +260,8 @@ static int intel_dp_mst_find_vcpi_slots_for_bpp(struct > intel_encoder *encoder, > remote_bw_overhead = intel_dp_mst_bw_overhead(crtc_state, > connector, > true, > dsc_slice_count, link_bpp_x16); > > + intel_dp_mst_compute_min_hblank(crtc_state, connector, > link_bpp_x16); > + > intel_dp_mst_compute_m_n(crtc_state, connector, > local_bw_overhead, > link_bpp_x16, > @@ -1292,6 +1316,10 @@ static void intel_mst_enable_dp(struct > intel_atomic_state *state, > TRANS_DP2_VFREQ_PIXEL_CLOCK(crtc_clock_hz & > 0xffffff)); > } > > + if (DISPLAY_VER(dev_priv) >= 20) > + intel_de_write(dev_priv, DP_MIN_HBLANK_CTL(dev_priv, > trans), > + pipe_config->min_hblank); > + intel_dp_mst_compute_min_hblank() calculates HBLANK_LL_SYM_CYC_CNT as per DP2.x specification which includes BS and BE framing control. Software driver needs to adjust these when programming minimum HBlank which doesn't include BS/BE framing control. Basically, we need to subtract 2 from pipe_config->min_hblank before programming. As per HW MMIO register, min_hblank can have a maximum value of 511, need to have these boundary conditions as well. > enable_bs_jitter_was(pipe_config); > > intel_ddi_enable_transcoder_func(encoder, pipe_config); diff --git > a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h index > 405f409e9761..8aeed48f9170 100644 > --- a/drivers/gpu/drm/i915/i915_reg.h > +++ b/drivers/gpu/drm/i915/i915_reg.h > @@ -1147,6 +1147,10 @@ > #define _TRANS_MULT_B 0x6102c > #define TRANS_MULT(dev_priv, trans) _MMIO_TRANS2(dev_priv, (trans), > _TRANS_MULT_A) > > +#define _DP_MIN_HBLANK_CTL_A 0x600ac > +#define _DP_MIN_HBLANK_CTL_B 0x610ac > +#define DP_MIN_HBLANK_CTL(dev_priv, trans) _MMIO_TRANS2(dev_priv, > (trans), _DP_MIN_HBLANK_CTL_A) > + > /* VGA port control */ > #define ADPA _MMIO(0x61100) > #define PCH_ADPA _MMIO(0xe1100) > -- > 2.25.1 ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCHv3] drm/i915/dp: Guarantee a minimum HBlank time 2024-10-28 6:14 [PATCHv3] drm/i915/dp: Guarantee a minimum HBlank time Arun R Murthy 2024-10-28 6:47 ` Srikanth V, NagaVenkata @ 2024-10-28 12:56 ` Jani Nikula 2024-11-07 9:21 ` Murthy, Arun R 2024-10-28 15:26 ` Ville Syrjälä ` (4 subsequent siblings) 6 siblings, 1 reply; 9+ messages in thread From: Jani Nikula @ 2024-10-28 12:56 UTC (permalink / raw) To: Arun R Murthy, intel-xe, intel-gfx; +Cc: Arun R Murthy On Mon, 28 Oct 2024, Arun R Murthy <arun.r.murthy@intel.com> wrote: > Mandate a minimum Hblank symbol cycle count between BS and BE in 8b/10b > MST and 12b/132b mode. > Spec: DP2.1a > > v2: Affine calculation/updation of min HBlank to dp_mst (Jani) > v3: moved min_hblank from struct intel_dp to intel_crtc_state (Jani) > > Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com> > --- > drivers/gpu/drm/i915/display/intel_atomic.c | 1 + > drivers/gpu/drm/i915/display/intel_crtc.c | 1 + > .../drm/i915/display/intel_display_types.h | 1 + > drivers/gpu/drm/i915/display/intel_dp_mst.c | 28 +++++++++++++++++++ > drivers/gpu/drm/i915/i915_reg.h | 4 +++ > 5 files changed, 35 insertions(+) > > diff --git a/drivers/gpu/drm/i915/display/intel_atomic.c b/drivers/gpu/drm/i915/display/intel_atomic.c > index 03dc54c802d3..24aa079efcad 100644 > --- a/drivers/gpu/drm/i915/display/intel_atomic.c > +++ b/drivers/gpu/drm/i915/display/intel_atomic.c > @@ -278,6 +278,7 @@ intel_crtc_duplicate_state(struct drm_crtc *crtc) > crtc_state->dsb_color_vblank = NULL; > crtc_state->dsb_commit = NULL; > crtc_state->use_dsb = false; > + crtc_state->min_hblank = 0; > > return &crtc_state->uapi; > } > diff --git a/drivers/gpu/drm/i915/display/intel_crtc.c b/drivers/gpu/drm/i915/display/intel_crtc.c > index 3c9168a57f38..472f3010bce4 100644 > --- a/drivers/gpu/drm/i915/display/intel_crtc.c > +++ b/drivers/gpu/drm/i915/display/intel_crtc.c > @@ -184,6 +184,7 @@ void intel_crtc_state_reset(struct intel_crtc_state *crtc_state, > crtc_state->scaler_state.scaler_id = -1; > crtc_state->mst_master_transcoder = INVALID_TRANSCODER; > crtc_state->max_link_bpp_x16 = INT_MAX; > + crtc_state->min_hblank = 0; > } > > static struct intel_crtc *intel_crtc_alloc(void) > diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h > index 2bb1fa64da2f..7f631fef128e 100644 > --- a/drivers/gpu/drm/i915/display/intel_display_types.h > +++ b/drivers/gpu/drm/i915/display/intel_display_types.h > @@ -1075,6 +1075,7 @@ struct intel_crtc_state { > > int max_link_bpp_x16; /* in 1/16 bpp units */ > int pipe_bpp; /* in 1 bpp units */ > + int min_hblank; /* min HBlank for DP2.1 */ > struct intel_link_m_n dp_m_n; > > /* m2_n2 for eDP downclock */ > diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c b/drivers/gpu/drm/i915/display/intel_dp_mst.c > index 1a2ff3e1cb68..2e088760a23a 100644 > --- a/drivers/gpu/drm/i915/display/intel_dp_mst.c > +++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c > @@ -161,6 +161,28 @@ static int intel_dp_mst_dsc_get_slice_count(const struct intel_connector *connec > num_joined_pipes); > } > > +static void intel_dp_mst_compute_min_hblank(struct intel_crtc_state *crtc_state, > + struct intel_connector *intel_connector, Always name struct intel_connector *connector, not intel_connector. That's what the style has been for years now, though not everything's been converted. > + int bpp_x16) > +{ > + struct intel_encoder *intel_encoder = intel_connector->encoder; Ditto, just encoder. > + struct intel_display *intel_display = to_intel_display(intel_encoder); Just display. Always. Everywhere. Make this the first local variable whenever possible. > + const struct drm_display_mode *adjusted_mode = > + &crtc_state->hw.adjusted_mode; > + u32 symbol_size = intel_dp_is_uhbr(crtc_state) ? 32 : 8; > + u32 hblank; Looks like these should be ints. > + > + if (DISPLAY_VER(intel_display) < 20) > + return; > + > + /* Calculate min Hblank Link Layer Symbol Cycle Count for 8b/10b MST & 128b/132b */ > + hblank = DIV_ROUND_UP((DIV_ROUND_UP(adjusted_mode->htotal - adjusted_mode->hdisplay, 4) * bpp_x16), symbol_size); Okay so I didn't really think this through, but 1) do we lose precision by dividing by 4 first, and multiplying by bpp_x16 next, and 2) how does this take into account that bpp_x16 is in fact the x16 value? > + if (intel_dp_is_uhbr(crtc_state)) > + crtc_state->min_hblank = (hblank > 5) ? hblank : 5; > + else > + crtc_state->min_hblank = (hblank > 3) ? hblank : 3; These look like hand-rolled max() that needlessly duplicate both hblank and the constant. > +} > + > static int intel_dp_mst_find_vcpi_slots_for_bpp(struct intel_encoder *encoder, > struct intel_crtc_state *crtc_state, > int max_bpp, > @@ -238,6 +260,8 @@ static int intel_dp_mst_find_vcpi_slots_for_bpp(struct intel_encoder *encoder, > remote_bw_overhead = intel_dp_mst_bw_overhead(crtc_state, connector, > true, dsc_slice_count, link_bpp_x16); > > + intel_dp_mst_compute_min_hblank(crtc_state, connector, link_bpp_x16); > + > intel_dp_mst_compute_m_n(crtc_state, connector, > local_bw_overhead, > link_bpp_x16, > @@ -1292,6 +1316,10 @@ static void intel_mst_enable_dp(struct intel_atomic_state *state, > TRANS_DP2_VFREQ_PIXEL_CLOCK(crtc_clock_hz & 0xffffff)); > } > > + if (DISPLAY_VER(dev_priv) >= 20) Always use the display local var when possible. DISPLAY_VER(display) > + intel_de_write(dev_priv, DP_MIN_HBLANK_CTL(dev_priv, trans), > + pipe_config->min_hblank); intel_de_write(display, .... DP_MIN_HBLANK_CTL(display, trans) ... > + > enable_bs_jitter_was(pipe_config); > > intel_ddi_enable_transcoder_func(encoder, pipe_config); > diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h > index 405f409e9761..8aeed48f9170 100644 > --- a/drivers/gpu/drm/i915/i915_reg.h > +++ b/drivers/gpu/drm/i915/i915_reg.h > @@ -1147,6 +1147,10 @@ > #define _TRANS_MULT_B 0x6102c > #define TRANS_MULT(dev_priv, trans) _MMIO_TRANS2(dev_priv, (trans), _TRANS_MULT_A) > > +#define _DP_MIN_HBLANK_CTL_A 0x600ac > +#define _DP_MIN_HBLANK_CTL_B 0x610ac > +#define DP_MIN_HBLANK_CTL(dev_priv, trans) _MMIO_TRANS2(dev_priv, (trans), _DP_MIN_HBLANK_CTL_A) > + > /* VGA port control */ > #define ADPA _MMIO(0x61100) > #define PCH_ADPA _MMIO(0xe1100) -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 9+ messages in thread
* RE: [PATCHv3] drm/i915/dp: Guarantee a minimum HBlank time 2024-10-28 12:56 ` Jani Nikula @ 2024-11-07 9:21 ` Murthy, Arun R 0 siblings, 0 replies; 9+ messages in thread From: Murthy, Arun R @ 2024-11-07 9:21 UTC (permalink / raw) To: Nikula, Jani, intel-xe@lists.freedesktop.org, intel-gfx@lists.freedesktop.org > > + > > + if (DISPLAY_VER(intel_display) < 20) > > + return; > > + > > + /* Calculate min Hblank Link Layer Symbol Cycle Count for 8b/10b MST > & 128b/132b */ > > + hblank = DIV_ROUND_UP((DIV_ROUND_UP(adjusted_mode->htotal - > > +adjusted_mode->hdisplay, 4) * bpp_x16), symbol_size); > > Okay so I didn't really think this through, but 1) do we lose precision by dividing > by 4 first, and multiplying by bpp_x16 next, and 2) how does this take into > account that bpp_x16 is in fact the x16 value? > Spec doesn't highlight more on precision, so should be fine losing the precision. x16 is obtained from fxp_q4_form_int Thanks and Regards, Arun R Murthy ------------------- ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCHv3] drm/i915/dp: Guarantee a minimum HBlank time 2024-10-28 6:14 [PATCHv3] drm/i915/dp: Guarantee a minimum HBlank time Arun R Murthy 2024-10-28 6:47 ` Srikanth V, NagaVenkata 2024-10-28 12:56 ` Jani Nikula @ 2024-10-28 15:26 ` Ville Syrjälä 2024-10-29 10:16 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915/dp: Guarantee a minimum HBlank time (rev3) Patchwork ` (3 subsequent siblings) 6 siblings, 0 replies; 9+ messages in thread From: Ville Syrjälä @ 2024-10-28 15:26 UTC (permalink / raw) To: Arun R Murthy; +Cc: intel-xe, intel-gfx, jani.nikula On Mon, Oct 28, 2024 at 11:44:18AM +0530, Arun R Murthy wrote: > Mandate a minimum Hblank symbol cycle count between BS and BE in 8b/10b > MST and 12b/132b mode. > Spec: DP2.1a > > v2: Affine calculation/updation of min HBlank to dp_mst (Jani) > v3: moved min_hblank from struct intel_dp to intel_crtc_state (Jani) > > Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com> > --- > drivers/gpu/drm/i915/display/intel_atomic.c | 1 + > drivers/gpu/drm/i915/display/intel_crtc.c | 1 + > .../drm/i915/display/intel_display_types.h | 1 + > drivers/gpu/drm/i915/display/intel_dp_mst.c | 28 +++++++++++++++++++ > drivers/gpu/drm/i915/i915_reg.h | 4 +++ Missing state dump and checker. > 5 files changed, 35 insertions(+) > > diff --git a/drivers/gpu/drm/i915/display/intel_atomic.c b/drivers/gpu/drm/i915/display/intel_atomic.c > index 03dc54c802d3..24aa079efcad 100644 > --- a/drivers/gpu/drm/i915/display/intel_atomic.c > +++ b/drivers/gpu/drm/i915/display/intel_atomic.c > @@ -278,6 +278,7 @@ intel_crtc_duplicate_state(struct drm_crtc *crtc) > crtc_state->dsb_color_vblank = NULL; > crtc_state->dsb_commit = NULL; > crtc_state->use_dsb = false; > + crtc_state->min_hblank = 0; This doesn't look like something that should be reset here. > > return &crtc_state->uapi; > } > diff --git a/drivers/gpu/drm/i915/display/intel_crtc.c b/drivers/gpu/drm/i915/display/intel_crtc.c > index 3c9168a57f38..472f3010bce4 100644 > --- a/drivers/gpu/drm/i915/display/intel_crtc.c > +++ b/drivers/gpu/drm/i915/display/intel_crtc.c > @@ -184,6 +184,7 @@ void intel_crtc_state_reset(struct intel_crtc_state *crtc_state, > crtc_state->scaler_state.scaler_id = -1; > crtc_state->mst_master_transcoder = INVALID_TRANSCODER; > crtc_state->max_link_bpp_x16 = INT_MAX; > + crtc_state->min_hblank = 0; Pointless. > } > > static struct intel_crtc *intel_crtc_alloc(void) > diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h > index 2bb1fa64da2f..7f631fef128e 100644 > --- a/drivers/gpu/drm/i915/display/intel_display_types.h > +++ b/drivers/gpu/drm/i915/display/intel_display_types.h > @@ -1075,6 +1075,7 @@ struct intel_crtc_state { > > int max_link_bpp_x16; /* in 1/16 bpp units */ > int pipe_bpp; /* in 1 bpp units */ > + int min_hblank; /* min HBlank for DP2.1 */ > struct intel_link_m_n dp_m_n; > > /* m2_n2 for eDP downclock */ > diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c b/drivers/gpu/drm/i915/display/intel_dp_mst.c > index 1a2ff3e1cb68..2e088760a23a 100644 > --- a/drivers/gpu/drm/i915/display/intel_dp_mst.c > +++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c > @@ -161,6 +161,28 @@ static int intel_dp_mst_dsc_get_slice_count(const struct intel_connector *connec > num_joined_pipes); > } > > +static void intel_dp_mst_compute_min_hblank(struct intel_crtc_state *crtc_state, > + struct intel_connector *intel_connector, > + int bpp_x16) > +{ > + struct intel_encoder *intel_encoder = intel_connector->encoder; > + struct intel_display *intel_display = to_intel_display(intel_encoder); > + const struct drm_display_mode *adjusted_mode = > + &crtc_state->hw.adjusted_mode; > + u32 symbol_size = intel_dp_is_uhbr(crtc_state) ? 32 : 8; > + u32 hblank; > + > + if (DISPLAY_VER(intel_display) < 20) > + return; > + > + /* Calculate min Hblank Link Layer Symbol Cycle Count for 8b/10b MST & 128b/132b */ > + hblank = DIV_ROUND_UP((DIV_ROUND_UP(adjusted_mode->htotal - adjusted_mode->hdisplay, 4) * bpp_x16), symbol_size); > + if (intel_dp_is_uhbr(crtc_state)) > + crtc_state->min_hblank = (hblank > 5) ? hblank : 5; > + else > + crtc_state->min_hblank = (hblank > 3) ? hblank : 3; > +} This looks like it should/could be a pure function. > + > static int intel_dp_mst_find_vcpi_slots_for_bpp(struct intel_encoder *encoder, > struct intel_crtc_state *crtc_state, > int max_bpp, > @@ -238,6 +260,8 @@ static int intel_dp_mst_find_vcpi_slots_for_bpp(struct intel_encoder *encoder, > remote_bw_overhead = intel_dp_mst_bw_overhead(crtc_state, connector, > true, dsc_slice_count, link_bpp_x16); > > + intel_dp_mst_compute_min_hblank(crtc_state, connector, link_bpp_x16); > + > intel_dp_mst_compute_m_n(crtc_state, connector, > local_bw_overhead, > link_bpp_x16, > @@ -1292,6 +1316,10 @@ static void intel_mst_enable_dp(struct intel_atomic_state *state, > TRANS_DP2_VFREQ_PIXEL_CLOCK(crtc_clock_hz & 0xffffff)); > } > > + if (DISPLAY_VER(dev_priv) >= 20) > + intel_de_write(dev_priv, DP_MIN_HBLANK_CTL(dev_priv, trans), > + pipe_config->min_hblank); > + > enable_bs_jitter_was(pipe_config); > > intel_ddi_enable_transcoder_func(encoder, pipe_config); > diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h > index 405f409e9761..8aeed48f9170 100644 > --- a/drivers/gpu/drm/i915/i915_reg.h > +++ b/drivers/gpu/drm/i915/i915_reg.h > @@ -1147,6 +1147,10 @@ > #define _TRANS_MULT_B 0x6102c > #define TRANS_MULT(dev_priv, trans) _MMIO_TRANS2(dev_priv, (trans), _TRANS_MULT_A) > > +#define _DP_MIN_HBLANK_CTL_A 0x600ac > +#define _DP_MIN_HBLANK_CTL_B 0x610ac > +#define DP_MIN_HBLANK_CTL(dev_priv, trans) _MMIO_TRANS2(dev_priv, (trans), _DP_MIN_HBLANK_CTL_A) Please insert this into the proper spot based on the register offset. _MMIO_TRANS2 is pointless overhead for platform as new as this. > + > /* VGA port control */ > #define ADPA _MMIO(0x61100) > #define PCH_ADPA _MMIO(0xe1100) > -- > 2.25.1 -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Fi.CI.CHECKPATCH: warning for drm/i915/dp: Guarantee a minimum HBlank time (rev3) 2024-10-28 6:14 [PATCHv3] drm/i915/dp: Guarantee a minimum HBlank time Arun R Murthy ` (2 preceding siblings ...) 2024-10-28 15:26 ` Ville Syrjälä @ 2024-10-29 10:16 ` Patchwork 2024-10-29 10:31 ` ✓ Fi.CI.BAT: success " Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-10-29 10:16 UTC (permalink / raw) To: Arun R Murthy; +Cc: intel-gfx == Series Details == Series: drm/i915/dp: Guarantee a minimum HBlank time (rev3) URL : https://patchwork.freedesktop.org/series/139267/ State : warning == Summary == Error: dim checkpatch failed f8695d2e95fe drm/i915/dp: Guarantee a minimum HBlank time -:74: WARNING:LONG_LINE: line length of 121 exceeds 100 columns #74: FILE: drivers/gpu/drm/i915/display/intel_dp_mst.c:179: + hblank = DIV_ROUND_UP((DIV_ROUND_UP(adjusted_mode->htotal - adjusted_mode->hdisplay, 4) * bpp_x16), symbol_size); -:114: WARNING:LONG_LINE: line length of 101 exceeds 100 columns #114: FILE: drivers/gpu/drm/i915/i915_reg.h:1152: +#define DP_MIN_HBLANK_CTL(dev_priv, trans) _MMIO_TRANS2(dev_priv, (trans), _DP_MIN_HBLANK_CTL_A) total: 0 errors, 2 warnings, 0 checks, 77 lines checked ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Fi.CI.BAT: success for drm/i915/dp: Guarantee a minimum HBlank time (rev3) 2024-10-28 6:14 [PATCHv3] drm/i915/dp: Guarantee a minimum HBlank time Arun R Murthy ` (3 preceding siblings ...) 2024-10-29 10:16 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915/dp: Guarantee a minimum HBlank time (rev3) Patchwork @ 2024-10-29 10:31 ` Patchwork 2024-10-29 12:11 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-10-30 19:18 ` Patchwork 6 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-10-29 10:31 UTC (permalink / raw) To: Arun R Murthy; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 3758 bytes --] == Series Details == Series: drm/i915/dp: Guarantee a minimum HBlank time (rev3) URL : https://patchwork.freedesktop.org/series/139267/ State : success == Summary == CI Bug Log - changes from CI_DRM_15603 -> Patchwork_139267v3 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/index.html Participating hosts (47 -> 46) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_139267v3 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-arlh-3: [PASS][1] -> [ABORT][2] ([i915#12133]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/bat-arlh-3/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/bat-arlh-3/igt@i915_selftest@live.html - bat-arlh-2: [PASS][3] -> [ABORT][4] ([i915#12133]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/bat-arlh-2/igt@i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/bat-arlh-2/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [PASS][5] -> [ABORT][6] ([i915#12061]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/bat-arlh-3/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/bat-arlh-3/igt@i915_selftest@live@workarounds.html - bat-arlh-2: [PASS][7] -> [ABORT][8] ([i915#12061]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/bat-arlh-2/igt@i915_selftest@live@workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/bat-arlh-2/igt@i915_selftest@live@workarounds.html * igt@kms_chamelium_frames@dp-crc-fast: - bat-dg2-13: [PASS][9] -> [FAIL][10] ([i915#12440]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/bat-dg2-13/igt@kms_chamelium_frames@dp-crc-fast.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/bat-dg2-13/igt@kms_chamelium_frames@dp-crc-fast.html #### Possible fixes #### * igt@i915_selftest@live: - bat-adlm-1: [INCOMPLETE][11] ([i915#12133]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/bat-adlm-1/igt@i915_selftest@live.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/bat-adlm-1/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-adlm-1: [INCOMPLETE][13] ([i915#9413]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/bat-adlm-1/igt@i915_selftest@live@workarounds.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/bat-adlm-1/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133 [i915#12440]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12440 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 Build changes ------------- * Linux: CI_DRM_15603 -> Patchwork_139267v3 CI-20190529: 20190529 CI_DRM_15603: 79811c7809c46a23b7cfceaf36d4994792c850da @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8086: 18939acec2446c6644644186b090d16e366af8bc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_139267v3: 79811c7809c46a23b7cfceaf36d4994792c850da @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/index.html [-- Attachment #2: Type: text/html, Size: 4703 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Fi.CI.IGT: failure for drm/i915/dp: Guarantee a minimum HBlank time (rev3) 2024-10-28 6:14 [PATCHv3] drm/i915/dp: Guarantee a minimum HBlank time Arun R Murthy ` (4 preceding siblings ...) 2024-10-29 10:31 ` ✓ Fi.CI.BAT: success " Patchwork @ 2024-10-29 12:11 ` Patchwork 2024-10-30 19:18 ` Patchwork 6 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-10-29 12:11 UTC (permalink / raw) To: Arun R Murthy; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 100278 bytes --] == Series Details == Series: drm/i915/dp: Guarantee a minimum HBlank time (rev3) URL : https://patchwork.freedesktop.org/series/139267/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15603_full -> Patchwork_139267v3_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_139267v3_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_139267v3_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 (9 -> 10) ------------------------------ Additional (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_139267v3_full: ### IGT changes ### #### Possible regressions #### * igt@kms_color@ctm-blue-to-red: - shard-dg2: [PASS][1] -> [SKIP][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@kms_color@ctm-blue-to-red.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_color@ctm-blue-to-red.html * igt@kms_color@ctm-signed: - shard-dg2: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_color@ctm-signed.html * igt@kms_cursor_legacy@cursora-vs-flipa-varying-size: - shard-glk: NOTRUN -> [INCOMPLETE][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-glk8/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-dg1: [PASS][5] -> [INCOMPLETE][6] +1 other test incomplete [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg1-16/igt@kms_plane@plane-panning-bottom-right-suspend.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-12/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@prime_mmap_coherency@read: - shard-mtlp: NOTRUN -> [INCOMPLETE][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-2/igt@prime_mmap_coherency@read.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_exec_reloc@basic-write-read-noreloc: - {shard-dg2-9}: NOTRUN -> [SKIP][8] +148 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-9/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_suspend@basic-s4-devices: - {shard-dg2-9}: NOTRUN -> [ABORT][9] +2 other tests abort [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-9/igt@gem_exec_suspend@basic-s4-devices.html Known issues ------------ Here are the changes found in Patchwork_139267v3_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#8411]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-tglu: NOTRUN -> [SKIP][11] ([i915#11078]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][12] ([i915#11078]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@device_reset@unbind-cold-reset-rebind.html * igt@device_reset@unbind-reset-rebind: - shard-dg1: NOTRUN -> [ABORT][13] ([i915#11814] / [i915#11815]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-14/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@busy-idle-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#8414]) +6 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-2/igt@drm_fdinfo@busy-idle-check-all@ccs0.html * igt@drm_fdinfo@virtual-busy-all: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#8414]) +9 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@drm_fdinfo@virtual-busy-all.html * igt@fbdev@nullptr: - shard-dg2: [PASS][16] -> [SKIP][17] ([i915#2582]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@fbdev@nullptr.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@fbdev@nullptr.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#3936]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-7/igt@gem_busy@semaphore.html - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#3936]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-6/igt@gem_busy@semaphore.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#9323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@suspend-resume: - shard-dg2: [PASS][21] -> [INCOMPLETE][22] ([i915#7297]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-8/igt@gem_ccs@suspend-resume.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@gem_ccs@suspend-resume.html - shard-tglu-1: NOTRUN -> [SKIP][23] ([i915#9323]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][24] -> [INCOMPLETE][25] ([i915#12392]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-8/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][26] ([i915#7697]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@gem_close_race@multigpu-basic-process.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#7697]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-rkl: NOTRUN -> [SKIP][28] ([i915#6335]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_engines@invalid-engines: - shard-mtlp: NOTRUN -> [FAIL][29] ([i915#12031]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@gem_ctx_engines@invalid-engines.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#8555]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#8555]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-15/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_sseu@invalid-args: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#280]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu: NOTRUN -> [SKIP][33] ([i915#280]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@hibernate: - shard-dg2: [PASS][34] -> [ABORT][35] ([i915#10030] / [i915#7975] / [i915#8213]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-11/igt@gem_eio@hibernate.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-3/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#4771]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-7/igt@gem_exec_balancer@bonded-sync.html - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4771]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-19/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4812]) +4 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][39] ([i915#4525]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg1: NOTRUN -> [FAIL][40] ([i915#11965] / [i915#12558]) +2 other tests fail [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-19/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_fair@basic-none-rrul: - shard-rkl: NOTRUN -> [FAIL][41] ([i915#2842]) +3 other tests fail [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none-share: - shard-tglu-1: NOTRUN -> [FAIL][42] ([i915#2842]) +1 other test fail [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@gem_exec_fair@basic-none-share.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][43] -> [FAIL][44] ([i915#2842]) +1 other test fail [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-sync: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3539]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-16/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_flush@basic-wb-rw-default: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#3539] / [i915#4852]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@gem_exec_flush@basic-wb-rw-default.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3281]) +13 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-wc-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#3281]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@gem_exec_reloc@basic-wc-read-noreloc.html * igt@gem_exec_reloc@basic-write-gtt-active: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#3281]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-16/igt@gem_exec_reloc@basic-write-gtt-active.html - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3281]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-1/igt@gem_exec_reloc@basic-write-gtt-active.html * igt@gem_exec_schedule@pi-ringfull@ccs0: - shard-dg2: NOTRUN -> [FAIL][52] ([i915#12296]) +7 other tests fail [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@gem_exec_schedule@pi-ringfull@ccs0.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4860]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-16/igt@gem_fence_thrash@bo-write-verify-threaded-none.html - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4860]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-1/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4860]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4613]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html - shard-dg1: NOTRUN -> [SKIP][57] ([i915#12193]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-16/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4565]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-16/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-multi: - shard-tglu: NOTRUN -> [SKIP][59] ([i915#4613]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@parallel-random: - shard-rkl: NOTRUN -> [SKIP][60] ([i915#4613]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@gem_lmem_swapping@parallel-random.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-tglu-1: NOTRUN -> [SKIP][61] ([i915#4613]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#8289]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@gem_media_fill@media-fill.html * igt@gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4077]) +11 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@gem_mmap_gtt@basic-small-bo.html * igt@gem_mmap_gtt@basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4077]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-18/igt@gem_mmap_gtt@basic-small-copy-odd.html * igt@gem_mmap_gtt@cpuset-basic-small-copy: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4077]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@gem_mmap_gtt@cpuset-basic-small-copy.html * igt@gem_mmap_wc@close: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4083]) +4 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@gem_mmap_wc@close.html * igt@gem_mmap_wc@write-gtt-read-wc: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4083]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@gem_mmap_wc@write-gtt-read-wc.html * igt@gem_pwrite_snooped: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#3282]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-16/igt@gem_pwrite_snooped.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4270]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#4270]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-tglu: NOTRUN -> [SKIP][71] ([i915#4270]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-tglu-1: NOTRUN -> [SKIP][72] ([i915#4270]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_readwrite@beyond-eob: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#3282]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@gem_readwrite@beyond-eob.html * igt@gem_readwrite@read-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3282]) +4 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@linear-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#5190] / [i915#8428]) +5 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@gem_render_copy@linear-to-vebox-yf-tiled.html * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#8428]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-6/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html * igt@gem_userptr_blits@access-control: - shard-tglu-1: NOTRUN -> [SKIP][77] ([i915#3297]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#3297]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-tglu: NOTRUN -> [SKIP][79] ([i915#3297]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3297]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#3297] / [i915#4880]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#3281] / [i915#3297]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#3297] / [i915#4958]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@gem_userptr_blits@sd-probe.html * igt@gen3_render_tiledx_blits: - shard-dg2: NOTRUN -> [SKIP][84] +10 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@gen3_render_tiledx_blits.html * igt@gen9_exec_parse@allowed-all: - shard-rkl: NOTRUN -> [SKIP][85] ([i915#2527]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#2856]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-1/igt@gen9_exec_parse@basic-rejected-ctx-param.html - shard-dg1: NOTRUN -> [SKIP][87] ([i915#2527]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-16/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@bb-chained: - shard-tglu: NOTRUN -> [SKIP][88] ([i915#2527] / [i915#2856]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-oversize: - shard-tglu-1: NOTRUN -> [SKIP][89] ([i915#2527] / [i915#2856]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#2856]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@load: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#6227]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [PASS][92] -> [ABORT][93] ([i915#9820]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-snb1/igt@i915_module_load@reload-with-fault-injection.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-snb1/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: [PASS][94] -> [ABORT][95] ([i915#10887] / [i915#9697] / [i915#9820]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-5/igt@i915_module_load@reload-with-fault-injection.html - shard-glk: [PASS][96] -> [ABORT][97] ([i915#9820]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-glk1/igt@i915_module_load@reload-with-fault-injection.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-glk8/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][98] ([i915#2681]) +1 other test warn [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-dg1: [PASS][99] -> [DMESG-WARN][100] ([i915#4423]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg1-19/igt@i915_pm_rpm@system-suspend-execbuf.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-16/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_pm_rps@engine-order: - shard-glk: [PASS][101] -> [FAIL][102] ([i915#12308]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-glk7/igt@i915_pm_rps@engine-order.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-glk7/igt@i915_pm_rps@engine-order.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#11681]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_pm_sseu@full-enable: - shard-tglu: NOTRUN -> [SKIP][104] ([i915#4387]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@i915_pm_sseu@full-enable.html * igt@i915_query@hwconfig_table: - shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#6245]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@i915_query@hwconfig_table.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#5723]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@i915_query@test-query-geometry-subslices.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#4212] / [i915#5190]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#4212] / [i915#4215] / [i915#5190]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][109] ([i915#4212]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-19/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#4212]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-7/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#4212]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-6/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#8709]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#8709]) +11 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs.html * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#10333]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@kms_async_flips@test-cursor.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-mtlp: [PASS][115] -> [FAIL][116] ([i915#11808] / [i915#5956]) +1 other test fail [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][117] ([i915#5286]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-glk: NOTRUN -> [SKIP][118] +8 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-glk1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html - shard-dg1: NOTRUN -> [SKIP][119] ([i915#4538] / [i915#5286]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][120] ([i915#5286]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#5286]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-64bpp-rotate-180: - shard-dg2: [PASS][122] -> [SKIP][123] ([i915#9197]) +20 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#3638]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-19/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#3638]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#5190]) +2 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#4538] / [i915#5190]) +6 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-8/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][128] +34 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#4538]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#6095]) +56 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-7/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs: - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#6095]) +19 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-6/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#6095]) +19 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#10307] / [i915#10434] / [i915#6095]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-8/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][134] ([i915#6095]) +29 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#12313]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#10307] / [i915#6095]) +144 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-8/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#12313]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#12313]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#6095]) +88 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3.html * igt@kms_cdclk@mode-transition: - shard-tglu: NOTRUN -> [SKIP][140] ([i915#3742]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-tglu-1: NOTRUN -> [SKIP][141] ([i915#3742]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#3742]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@ctm-negative: - shard-mtlp: NOTRUN -> [SKIP][143] +4 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-1/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_frames@dp-crc-single: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#7828]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#7828]) +8 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#7828]) +3 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#7828]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_chamelium_hpd@vga-hpd-after-suspend: - shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#7828]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html * igt@kms_content_protection@atomic: - shard-tglu: NOTRUN -> [SKIP][149] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_content_protection@atomic.html * igt@kms_content_protection@legacy: - shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_content_protection@legacy.html * igt@kms_content_protection@legacy@pipe-a-dp-3: - shard-dg2: NOTRUN -> [TIMEOUT][151] ([i915#7173]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@kms_content_protection@legacy@pipe-a-dp-3.html * igt@kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#6944] / [i915#9424]) +2 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#9424]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#7118] / [i915#9424]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#3555] / [i915#8814]) +2 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#11453] / [i915#3359]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#11453] / [i915#3359]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg2: NOTRUN -> [SKIP][158] ([i915#11453] / [i915#3359]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-7/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][159] ([i915#11453] / [i915#3359]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-19/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#11453] / [i915#3359]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-tglu: NOTRUN -> [SKIP][161] ([i915#3555]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#3555]) +2 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#3555]) +2 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#9197]) +23 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#4103]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-rkl: NOTRUN -> [SKIP][166] +11 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#4103] / [i915#4213]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu: NOTRUN -> [SKIP][168] ([i915#1769] / [i915#3555] / [i915#3804]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#3804]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#3840]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#3840] / [i915#9688]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-7/igt@kms_dsc@dsc-fractional-bpp.html - shard-dg1: NOTRUN -> [SKIP][172] ([i915#3840]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-19/igt@kms_dsc@dsc-fractional-bpp.html - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#3840] / [i915#9688]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-6/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#3840]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-tglu-1: NOTRUN -> [SKIP][175] ([i915#3555] / [i915#3840]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2: NOTRUN -> [INCOMPLETE][176] ([i915#9878]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-6/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][177] ([i915#2065] / [i915#4854]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#1839]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#1839]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#9337]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#658]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#8381]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-tglu: NOTRUN -> [SKIP][183] ([i915#3637]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#3637]) +5 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-snb: [PASS][185] -> [FAIL][186] ([i915#2122]) +1 other test fail [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-snb2/igt@kms_flip@2x-plain-flip-ts-check.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-snb7/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-tglu: NOTRUN -> [FAIL][187] ([i915#2122]) +1 other test fail [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@plain-flip-fb-recreate: - shard-dg2: [PASS][188] -> [FAIL][189] ([i915#2122]) +3 other tests fail [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-11/igt@kms_flip@plain-flip-fb-recreate.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-4/igt@kms_flip@plain-flip-fb-recreate.html * igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a1: - shard-dg2: NOTRUN -> [FAIL][190] ([i915#2122]) +1 other test fail [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-4/igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a1.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-tglu: [PASS][191] -> [FAIL][192] ([i915#2122]) +2 other tests fail [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-tglu-9/igt@kms_flip@plain-flip-ts-check-interruptible.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-9/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1: - shard-rkl: [PASS][193] -> [FAIL][194] ([i915#2122]) +2 other tests fail [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-rkl-7/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-4/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#2672]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#2672]) +2 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#2672] / [i915#3555]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#2587] / [i915#2672]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling: - shard-dg2: [PASS][201] -> [SKIP][202] ([i915#3555]) +3 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][203] ([i915#2672] / [i915#3555]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#2587] / [i915#2672]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#2672] / [i915#3555]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#5190]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#5274]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: [PASS][208] -> [SKIP][209] ([i915#5354]) +4 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#8708]) +4 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#1825]) +15 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-tglu-1: NOTRUN -> [SKIP][212] +44 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#8708]) +4 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#5354]) +49 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][215] ([i915#3458]) +3 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#8708]) +9 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][217] +5 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg1: NOTRUN -> [SKIP][218] ([i915#5439]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#9766]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#3023]) +9 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#3458]) +10 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#1825]) +10 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: NOTRUN -> [SKIP][223] ([i915#433]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@invalid-hdr: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#8228]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-swap: - shard-tglu: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#8228]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#8228]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@kms_hdr@static-toggle.html * igt@kms_joiner@basic-big-joiner: - shard-tglu: NOTRUN -> [SKIP][227] ([i915#10656]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][228] ([i915#10656]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: [PASS][229] -> [SKIP][230] ([i915#12388]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-10/igt@kms_joiner@invalid-modeset-force-big-joiner.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#12339]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_plane@plane-position-hole-dpms: - shard-dg2: [PASS][232] -> [SKIP][233] ([i915#8825]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@kms_plane@plane-position-hole-dpms.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_plane@plane-position-hole-dpms.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#7294]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-dg2: [PASS][235] -> [SKIP][236] ([i915#7294]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_plane_alpha_blend@constant-alpha-max.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#8821]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-8/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][238] ([i915#8292]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-14/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#12247]) +8 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#12247] / [i915#8152] / [i915#9423]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-c: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#12247]) +9 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][242] ([i915#12247]) +9 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-c: - shard-dg2: [PASS][243] -> [SKIP][244] ([i915#12247]) +8 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-c.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-c.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d: - shard-dg2: [PASS][245] -> [SKIP][246] ([i915#8152]) +2 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers: - shard-dg2: [PASS][247] -> [SKIP][248] ([i915#3555] / [i915#8152] / [i915#9423]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-dg1: NOTRUN -> [SKIP][249] ([i915#3555]) +2 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-16/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#12247]) +3 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-16/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format: - shard-dg2: [PASS][251] -> [SKIP][252] ([i915#8152] / [i915#9423]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][253] ([i915#12247] / [i915#6953]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b: - shard-tglu-1: NOTRUN -> [SKIP][254] ([i915#12247]) +3 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#6953]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#12247] / [i915#3555] / [i915#9423]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#12247] / [i915#8152]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][259] ([i915#12247] / [i915#6953]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#12247]) +4 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#12343]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-8/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-dpms: - shard-tglu: NOTRUN -> [SKIP][262] ([i915#9812]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_backlight@fade-with-suspend: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#5354]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#9292]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-dg2: [PASS][265] -> [SKIP][266] ([i915#9293]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_pm_dc@dc5-dpms-negative.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc6-psr: - shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#9685]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_lpsp@screens-disabled: - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#8430]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-2/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@cursor-dpms: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#1849]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-rkl: [PASS][270] -> [SKIP][271] ([i915#9519]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-rkl-3/igt@kms_pm_rpm@dpms-non-lpsp.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-2/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][272] -> [SKIP][273] ([i915#9519]) +2 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html - shard-tglu: NOTRUN -> [SKIP][274] ([i915#9519]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-dg2: [PASS][275] -> [SKIP][276] ([i915#3547]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@kms_pm_rpm@system-suspend-modeset.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#6524] / [i915#6805]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_prime@basic-crc-vgem.html * igt@kms_prime@d3hot: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#6524]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@kms_prime@d3hot.html * igt@kms_properties@plane-properties-atomic: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#11521]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_properties@plane-properties-atomic.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][280] ([i915#11520]) +3 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#12316]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][282] ([i915#11520]) +3 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: NOTRUN -> [SKIP][283] ([i915#11520]) +2 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html - shard-dg1: NOTRUN -> [SKIP][284] ([i915#11520]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-15/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][285] ([i915#9808]) +2 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#11520]) +9 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][287] ([i915#9683]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-14/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][288] ([i915#9683]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-sprite-blt: - shard-dg1: NOTRUN -> [SKIP][289] ([i915#1072] / [i915#9732]) +2 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-15/igt@kms_psr@fbc-pr-sprite-blt.html * igt@kms_psr@pr-cursor-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#1072] / [i915#9732]) +17 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@kms_psr@pr-cursor-mmap-cpu.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#1072] / [i915#9732]) +8 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_psr@pr-no-drrs: - shard-mtlp: NOTRUN -> [SKIP][292] ([i915#9688]) +8 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-1/igt@kms_psr@pr-no-drrs.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][293] ([i915#9732]) +10 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_psr@psr2-primary-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][294] ([i915#4077] / [i915#9688]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@kms_psr@psr2-primary-mmap-gtt@edp-1.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#9732]) +9 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2: NOTRUN -> [SKIP][296] ([i915#9685]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#5289]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][298] ([i915#5289]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][299] ([i915#5190] / [i915#9197]) +2 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg1: NOTRUN -> [SKIP][300] ([i915#5289]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-mtlp: NOTRUN -> [SKIP][301] ([i915#11131] / [i915#4235]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#11131] / [i915#4235]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#3555]) +3 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2: NOTRUN -> [SKIP][304] ([i915#8623]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@lobf: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#11920]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-mtlp: [PASS][306] -> [FAIL][307] ([i915#10393]) +1 other test fail [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-mtlp-1/igt@kms_vrr@negative-basic.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-7/igt@kms_vrr@negative-basic.html - shard-dg2: [PASS][308] -> [SKIP][309] ([i915#3555] / [i915#9906]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-10/igt@kms_vrr@negative-basic.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-5/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-dg1: NOTRUN -> [SKIP][310] ([i915#9906]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-19/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-mtlp: NOTRUN -> [SKIP][311] ([i915#8808] / [i915#9906]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-6/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-rkl: NOTRUN -> [SKIP][312] ([i915#9906]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#2437]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-tglu-1: NOTRUN -> [SKIP][314] ([i915#2437] / [i915#9412]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-tglu: NOTRUN -> [SKIP][315] ([i915#2437]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][316] ([i915#7387]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@perf@global-sseu-config.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][317] ([i915#4349]) +4 other tests fail [317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][318] ([i915#12549] / [i915#6806]) +1 other test fail [318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@rc6-all-gts: - shard-tglu: NOTRUN -> [SKIP][319] ([i915#8516]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][320] ([i915#8516]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-8/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#3291] / [i915#3708]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#3708] / [i915#4077]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@prime_vgem@coherency-gtt.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-mtlp: NOTRUN -> [SKIP][323] ([i915#9917]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-dg2: NOTRUN -> [SKIP][324] ([i915#9917]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-8/igt@sriov_basic@enable-vfs-autoprobe-on.html #### Possible fixes #### * igt@gem_ctx_engines@invalid-engines: - shard-tglu: [FAIL][325] ([i915#12031]) -> [PASS][326] [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-tglu-4/igt@gem_ctx_engines@invalid-engines.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-5/igt@gem_ctx_engines@invalid-engines.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][327] ([i915#12543] / [i915#5784]) -> [PASS][328] [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg1-13/igt@gem_eio@reset-stress.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-14/igt@gem_eio@reset-stress.html * igt@gem_exec_fair@basic-pace-solo: - shard-rkl: [FAIL][329] ([i915#2842]) -> [PASS][330] +1 other test pass [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-rkl-7/igt@gem_exec_fair@basic-pace-solo.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo.html * igt@i915_selftest@live: - shard-mtlp: [ABORT][331] ([i915#12133] / [i915#12216]) -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-mtlp-7/igt@i915_selftest@live.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-2/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [ABORT][333] ([i915#12216]) -> [PASS][334] [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-mtlp-7/igt@i915_selftest@live@workarounds.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-2/igt@i915_selftest@live@workarounds.html * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions: - shard-dg2: [SKIP][335] ([i915#9197]) -> [PASS][336] +4 other tests pass [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-5/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-snb: [SKIP][337] -> [PASS][338] +2 other tests pass [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-snb2/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-snb7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][339] ([i915#2346]) -> [PASS][340] [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_flip@dpms-off-confusion: - shard-dg2: [SKIP][341] ([i915#5354]) -> [PASS][342] +2 other tests pass [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_flip@dpms-off-confusion.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-5/igt@kms_flip@dpms-off-confusion.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a1: - shard-glk: [FAIL][343] ([i915#10826]) -> [PASS][344] [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-glk1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a1.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-glk5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a1.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a2: - shard-glk: [FAIL][345] ([i915#2122]) -> [PASS][346] +3 other tests pass [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-glk1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a2.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-glk5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a2.html * igt@kms_flip@plain-flip-interruptible: - shard-dg1: [DMESG-WARN][347] ([i915#4423]) -> [PASS][348] [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg1-14/igt@kms_flip@plain-flip-interruptible.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-17/igt@kms_flip@plain-flip-interruptible.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-snb: [FAIL][349] ([i915#2122]) -> [PASS][350] +1 other test pass [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-snb6/igt@kms_flip@plain-flip-ts-check-interruptible.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-snb2/igt@kms_flip@plain-flip-ts-check-interruptible.html - shard-mtlp: [FAIL][351] ([i915#11989] / [i915#2122]) -> [PASS][352] [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-mtlp-4/igt@kms_flip@plain-flip-ts-check-interruptible.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-3/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1: - shard-mtlp: [FAIL][353] ([i915#2122]) -> [PASS][354] [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-mtlp-4/igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-3/igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1.html * igt@kms_plane_alpha_blend@constant-alpha-min: - shard-dg2: [SKIP][355] ([i915#7294]) -> [PASS][356] [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_plane_alpha_blend@constant-alpha-min.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-5/igt@kms_plane_alpha_blend@constant-alpha-min.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-dg2: [SKIP][357] ([i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b: - shard-dg2: [SKIP][359] ([i915#12247]) -> [PASS][360] +2 other tests pass [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d: - shard-dg2: [SKIP][361] ([i915#12247] / [i915#8152]) -> [PASS][362] [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][363] ([i915#9519]) -> [PASS][364] +1 other test pass [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp.html #### Warnings #### * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg2: [SKIP][365] -> [SKIP][366] ([i915#9197]) +4 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: [SKIP][367] ([i915#4538] / [i915#5190]) -> [SKIP][368] ([i915#5190] / [i915#9197]) +5 other tests skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-dg2: [SKIP][369] ([i915#9197]) -> [SKIP][370] ([i915#10307] / [i915#6095]) +1 other test skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-5/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-dg2: [SKIP][371] ([i915#12313]) -> [SKIP][372] ([i915#9197]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs: - shard-dg2: [SKIP][373] ([i915#10307] / [i915#6095]) -> [SKIP][374] ([i915#9197]) +4 other tests skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html * igt@kms_color@deep-color: - shard-dg2: [SKIP][375] ([i915#3555]) -> [SKIP][376] ([i915#5354]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_color@deep-color.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_color@deep-color.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: [SKIP][377] ([i915#3299]) -> [SKIP][378] ([i915#9197]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-1.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@legacy: - shard-dg2: [SKIP][379] ([i915#7118] / [i915#9424]) -> [TIMEOUT][380] ([i915#7173]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-8/igt@kms_content_protection@legacy.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@kms_content_protection@legacy.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-dg2: [SKIP][381] ([i915#9197]) -> [SKIP][382] ([i915#3555]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_cursor_crc@cursor-offscreen-32x10.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-5/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-dg2: [SKIP][383] ([i915#3555]) -> [SKIP][384] ([i915#9197]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2: [SKIP][385] ([i915#5354]) -> [SKIP][386] ([i915#9197]) +4 other tests skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: [SKIP][387] ([i915#4103] / [i915#4213]) -> [SKIP][388] ([i915#9197]) +1 other test skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: [SKIP][389] ([i915#9833]) -> [SKIP][390] ([i915#9197]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2: [SKIP][391] ([i915#3555] / [i915#5190]) -> [SKIP][392] ([i915#2672] / [i915#3555] / [i915#5190]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-dg2: [SKIP][393] ([i915#2672] / [i915#3555] / [i915#5190]) -> [SKIP][394] ([i915#3555] / [i915#5190]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2: [SKIP][395] ([i915#5354]) -> [SKIP][396] ([i915#8708]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg2: [SKIP][397] ([i915#10433] / [i915#3458]) -> [SKIP][398] ([i915#3458]) +1 other test skip [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt: - shard-dg2: [SKIP][399] ([i915#8708]) -> [SKIP][400] ([i915#5354]) +8 other tests skip [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][401] ([i915#3458]) -> [SKIP][402] ([i915#5354]) +6 other tests skip [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite: - shard-dg2: [SKIP][403] ([i915#5354]) -> [SKIP][404] ([i915#3458]) +1 other test skip [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: [SKIP][405] ([i915#3555] / [i915#8228]) -> [SKIP][406] ([i915#9197]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_hdr@invalid-metadata-sizes.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle: - shard-dg2: [SKIP][407] ([i915#9197]) -> [SKIP][408] ([i915#3555] / [i915#8228]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_hdr@static-toggle.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-5/igt@kms_hdr@static-toggle.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][409] ([i915#4816]) -> [SKIP][410] ([i915#4070] / [i915#4816]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-dg2: [SKIP][411] ([i915#6301]) -> [SKIP][412] ([i915#9197]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@kms_panel_fitting@legacy.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_panel_fitting@legacy.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-dg2: [SKIP][413] ([i915#12247] / [i915#6953] / [i915#9423]) -> [SKIP][414] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d: - shard-dg2: [SKIP][415] ([i915#12247]) -> [SKIP][416] ([i915#12247] / [i915#8152]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2: [SKIP][417] ([i915#5190]) -> [SKIP][418] ([i915#5190] / [i915#9197]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: [SKIP][419] -> [FAIL][420] ([i915#10959]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-glk8/igt@kms_tiled_display@basic-test-pattern.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-glk7/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: [SKIP][421] ([i915#9906]) -> [SKIP][422] ([i915#9197]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_vrr@seamless-rr-switch-vrr.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@perf@non-zero-reason: - shard-dg2: [FAIL][423] ([i915#7484]) -> [FAIL][424] ([i915#9100]) +1 other test fail [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-4/igt@perf@non-zero-reason.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-7/igt@perf@non-zero-reason.html * igt@prime_mmap@test_aperture_limit: - shard-dg2: [INCOMPLETE][425] ([i915#5493]) -> [WARN][4 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/index.html [-- Attachment #2: Type: text/html, Size: 109553 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Fi.CI.IGT: failure for drm/i915/dp: Guarantee a minimum HBlank time (rev3) 2024-10-28 6:14 [PATCHv3] drm/i915/dp: Guarantee a minimum HBlank time Arun R Murthy ` (5 preceding siblings ...) 2024-10-29 12:11 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2024-10-30 19:18 ` Patchwork 6 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-10-30 19:18 UTC (permalink / raw) To: Arun R Murthy; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 100278 bytes --] == Series Details == Series: drm/i915/dp: Guarantee a minimum HBlank time (rev3) URL : https://patchwork.freedesktop.org/series/139267/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15603_full -> Patchwork_139267v3_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_139267v3_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_139267v3_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 (9 -> 10) ------------------------------ Additional (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_139267v3_full: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_legacy@cursora-vs-flipa-varying-size: - shard-glk: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-glk8/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-dg1: [PASS][2] -> [INCOMPLETE][3] +1 other test incomplete [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg1-16/igt@kms_plane@plane-panning-bottom-right-suspend.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-12/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@prime_mmap_coherency@read: - shard-mtlp: NOTRUN -> [INCOMPLETE][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-2/igt@prime_mmap_coherency@read.html Known issues ------------ Here are the changes found in Patchwork_139267v3_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-tglu: NOTRUN -> [SKIP][6] ([i915#11078]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@device_reset@unbind-cold-reset-rebind.html * igt@device_reset@unbind-reset-rebind: - shard-dg1: NOTRUN -> [ABORT][8] ([i915#11814] / [i915#11815]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-14/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@busy-idle-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8414]) +6 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-2/igt@drm_fdinfo@busy-idle-check-all@ccs0.html * igt@drm_fdinfo@virtual-busy-all: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +9 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@drm_fdinfo@virtual-busy-all.html * igt@fbdev@nullptr: - shard-dg2: [PASS][11] -> [SKIP][12] ([i915#2582]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@fbdev@nullptr.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@fbdev@nullptr.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#3936]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-7/igt@gem_busy@semaphore.html - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#3936]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-6/igt@gem_busy@semaphore.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@suspend-resume: - shard-dg2: [PASS][16] -> [INCOMPLETE][17] ([i915#7297]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-8/igt@gem_ccs@suspend-resume.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@gem_ccs@suspend-resume.html - shard-tglu-1: NOTRUN -> [SKIP][18] ([i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][19] -> [INCOMPLETE][20] ([i915#12392]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-8/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][21] ([i915#7697]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@gem_close_race@multigpu-basic-process.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#7697]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#6335]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_engines@invalid-engines: - shard-mtlp: NOTRUN -> [FAIL][24] ([i915#12031]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@gem_ctx_engines@invalid-engines.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#8555]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#8555]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-15/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_sseu@invalid-args: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@hibernate: - shard-dg2: [PASS][29] -> [ABORT][30] ([i915#10030] / [i915#7975] / [i915#8213]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-11/igt@gem_eio@hibernate.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-3/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4771]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-7/igt@gem_exec_balancer@bonded-sync.html - shard-dg1: NOTRUN -> [SKIP][32] ([i915#4771]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-19/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4812]) +4 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#4525]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg1: NOTRUN -> [FAIL][35] ([i915#11965] / [i915#12558]) +2 other tests fail [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-19/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_fair@basic-none-rrul: - shard-rkl: NOTRUN -> [FAIL][36] ([i915#2842]) +3 other tests fail [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none-share: - shard-tglu-1: NOTRUN -> [FAIL][37] ([i915#2842]) +1 other test fail [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@gem_exec_fair@basic-none-share.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][38] -> [FAIL][39] ([i915#2842]) +1 other test fail [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-sync: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-16/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_flush@basic-wb-rw-default: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@gem_exec_flush@basic-wb-rw-default.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3281]) +13 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-wc-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#3281]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@gem_exec_reloc@basic-wc-read-noreloc.html * igt@gem_exec_reloc@basic-write-gtt-active: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#3281]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-16/igt@gem_exec_reloc@basic-write-gtt-active.html - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#3281]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-1/igt@gem_exec_reloc@basic-write-gtt-active.html * igt@gem_exec_schedule@pi-ringfull@ccs0: - shard-dg2: NOTRUN -> [FAIL][47] ([i915#12296]) +7 other tests fail [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@gem_exec_schedule@pi-ringfull@ccs0.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4860]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-16/igt@gem_fence_thrash@bo-write-verify-threaded-none.html - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4860]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-1/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4860]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4613]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html - shard-dg1: NOTRUN -> [SKIP][52] ([i915#12193]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-16/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4565]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-16/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-multi: - shard-tglu: NOTRUN -> [SKIP][54] ([i915#4613]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@parallel-random: - shard-rkl: NOTRUN -> [SKIP][55] ([i915#4613]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@gem_lmem_swapping@parallel-random.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-tglu-1: NOTRUN -> [SKIP][56] ([i915#4613]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#8289]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@gem_media_fill@media-fill.html * igt@gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4077]) +11 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@gem_mmap_gtt@basic-small-bo.html * igt@gem_mmap_gtt@basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4077]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-18/igt@gem_mmap_gtt@basic-small-copy-odd.html * igt@gem_mmap_gtt@cpuset-basic-small-copy: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4077]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@gem_mmap_gtt@cpuset-basic-small-copy.html * igt@gem_mmap_wc@close: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4083]) +4 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@gem_mmap_wc@close.html * igt@gem_mmap_wc@write-gtt-read-wc: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4083]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@gem_mmap_wc@write-gtt-read-wc.html * igt@gem_pwrite_snooped: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#3282]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-16/igt@gem_pwrite_snooped.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4270]) +4 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#4270]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-tglu: NOTRUN -> [SKIP][66] ([i915#4270]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-tglu-1: NOTRUN -> [SKIP][67] ([i915#4270]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_readwrite@beyond-eob: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#3282]) +3 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@gem_readwrite@beyond-eob.html * igt@gem_readwrite@read-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#3282]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@linear-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#5190] / [i915#8428]) +5 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@gem_render_copy@linear-to-vebox-yf-tiled.html * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#8428]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-6/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html * igt@gem_userptr_blits@access-control: - shard-tglu-1: NOTRUN -> [SKIP][72] ([i915#3297]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#3297]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-tglu: NOTRUN -> [SKIP][74] ([i915#3297]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#3297]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3297] / [i915#4880]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#3281] / [i915#3297]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#3297] / [i915#4958]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@gem_userptr_blits@sd-probe.html * igt@gen3_render_tiledx_blits: - shard-dg2: NOTRUN -> [SKIP][79] +10 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@gen3_render_tiledx_blits.html * igt@gen9_exec_parse@allowed-all: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#2527]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#2856]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-1/igt@gen9_exec_parse@basic-rejected-ctx-param.html - shard-dg1: NOTRUN -> [SKIP][82] ([i915#2527]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-16/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@bb-chained: - shard-tglu: NOTRUN -> [SKIP][83] ([i915#2527] / [i915#2856]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-oversize: - shard-tglu-1: NOTRUN -> [SKIP][84] ([i915#2527] / [i915#2856]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#2856]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@load: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#6227]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [PASS][87] -> [ABORT][88] ([i915#9820]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-snb1/igt@i915_module_load@reload-with-fault-injection.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-snb1/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: [PASS][89] -> [ABORT][90] ([i915#10887] / [i915#9697] / [i915#9820]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-5/igt@i915_module_load@reload-with-fault-injection.html - shard-glk: [PASS][91] -> [ABORT][92] ([i915#9820]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-glk1/igt@i915_module_load@reload-with-fault-injection.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-glk8/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][93] ([i915#2681]) +1 other test warn [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-dg1: [PASS][94] -> [DMESG-WARN][95] ([i915#4423]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg1-19/igt@i915_pm_rpm@system-suspend-execbuf.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-16/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_pm_rps@engine-order: - shard-glk: [PASS][96] -> [FAIL][97] ([i915#12308]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-glk7/igt@i915_pm_rps@engine-order.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-glk7/igt@i915_pm_rps@engine-order.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#11681]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_pm_sseu@full-enable: - shard-tglu: NOTRUN -> [SKIP][99] ([i915#4387]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@i915_pm_sseu@full-enable.html * igt@i915_query@hwconfig_table: - shard-tglu-1: NOTRUN -> [SKIP][100] ([i915#6245]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@i915_query@hwconfig_table.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#5723]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@i915_query@test-query-geometry-subslices.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#4212] / [i915#5190]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4212] / [i915#4215] / [i915#5190]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#4212]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-19/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#4212]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-7/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#4212]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-6/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#8709]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#8709]) +11 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs.html * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#10333]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@kms_async_flips@test-cursor.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-mtlp: [PASS][110] -> [FAIL][111] ([i915#11808] / [i915#5956]) +1 other test fail [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][112] ([i915#5286]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-glk: NOTRUN -> [SKIP][113] +8 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-glk1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html - shard-dg1: NOTRUN -> [SKIP][114] ([i915#4538] / [i915#5286]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][115] ([i915#5286]) +2 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#5286]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-64bpp-rotate-180: - shard-dg2: [PASS][117] -> [SKIP][118] ([i915#9197]) +20 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#3638]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-19/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#3638]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#5190]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#4538] / [i915#5190]) +6 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-8/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][123] +34 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#4538]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#6095]) +56 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-7/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs: - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#6095]) +19 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-6/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#6095]) +19 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#10307] / [i915#10434] / [i915#6095]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-8/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][129] ([i915#6095]) +29 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#12313]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#10307] / [i915#6095]) +144 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-8/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#12313]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][133] ([i915#12313]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#6095]) +88 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3.html * igt@kms_cdclk@mode-transition: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#3742]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#3742]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#3742]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@ctm-negative: - shard-mtlp: NOTRUN -> [SKIP][138] +4 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-1/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_frames@dp-crc-single: - shard-tglu: NOTRUN -> [SKIP][139] ([i915#7828]) +3 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#7828]) +8 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#7828]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-mtlp: NOTRUN -> [SKIP][142] ([i915#7828]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_chamelium_hpd@vga-hpd-after-suspend: - shard-tglu-1: NOTRUN -> [SKIP][143] ([i915#7828]) +2 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html * igt@kms_color@ctm-blue-to-red: - shard-dg2: [PASS][144] -> [SKIP][145] ([i915#12655]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@kms_color@ctm-blue-to-red.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_color@ctm-blue-to-red.html * igt@kms_color@ctm-signed: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#12655]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_color@ctm-signed.html * igt@kms_content_protection@atomic: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_content_protection@atomic.html * igt@kms_content_protection@legacy: - shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_content_protection@legacy.html * igt@kms_content_protection@legacy@pipe-a-dp-3: - shard-dg2: NOTRUN -> [TIMEOUT][149] ([i915#7173]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@kms_content_protection@legacy@pipe-a-dp-3.html * igt@kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][150] ([i915#6944] / [i915#9424]) +2 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#9424]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#7118] / [i915#9424]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#3555] / [i915#8814]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#11453] / [i915#3359]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#11453] / [i915#3359]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg2: NOTRUN -> [SKIP][156] ([i915#11453] / [i915#3359]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-7/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][157] ([i915#11453] / [i915#3359]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-19/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#11453] / [i915#3359]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#3555]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#3555]) +2 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#3555]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#9197]) +23 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-tglu-1: NOTRUN -> [SKIP][163] ([i915#4103]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-rkl: NOTRUN -> [SKIP][164] +11 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#4103] / [i915#4213]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#1769] / [i915#3555] / [i915#3804]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#3804]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#3840]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#3840] / [i915#9688]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-7/igt@kms_dsc@dsc-fractional-bpp.html - shard-dg1: NOTRUN -> [SKIP][170] ([i915#3840]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-19/igt@kms_dsc@dsc-fractional-bpp.html - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#3840] / [i915#9688]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-6/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#3840]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#3555] / [i915#3840]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2: NOTRUN -> [INCOMPLETE][174] ([i915#9878]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-6/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#2065] / [i915#4854]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#1839]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#1839]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#9337]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][179] ([i915#658]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#8381]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#3637]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][182] ([i915#3637]) +5 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-snb: [PASS][183] -> [FAIL][184] ([i915#2122]) +1 other test fail [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-snb2/igt@kms_flip@2x-plain-flip-ts-check.html [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-snb7/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-tglu: NOTRUN -> [FAIL][185] ([i915#2122]) +1 other test fail [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@plain-flip-fb-recreate: - shard-dg2: [PASS][186] -> [FAIL][187] ([i915#2122]) +3 other tests fail [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-11/igt@kms_flip@plain-flip-fb-recreate.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-4/igt@kms_flip@plain-flip-fb-recreate.html * igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a1: - shard-dg2: NOTRUN -> [FAIL][188] ([i915#2122]) +1 other test fail [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-4/igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a1.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-tglu: [PASS][189] -> [FAIL][190] ([i915#2122]) +2 other tests fail [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-tglu-9/igt@kms_flip@plain-flip-ts-check-interruptible.html [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-9/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1: - shard-rkl: [PASS][191] -> [FAIL][192] ([i915#2122]) +2 other tests fail [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-rkl-7/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-4/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#2672]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#2672]) +2 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#2672] / [i915#3555]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#2587] / [i915#2672]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling: - shard-dg2: [PASS][199] -> [SKIP][200] ([i915#3555]) +3 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][201] ([i915#2672] / [i915#3555]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][202] ([i915#2587] / [i915#2672]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#2672] / [i915#3555]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#5190]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#5274]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: [PASS][206] -> [SKIP][207] ([i915#5354]) +4 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#8708]) +4 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#1825]) +15 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-tglu-1: NOTRUN -> [SKIP][210] +44 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#8708]) +4 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#5354]) +49 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#3458]) +3 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#8708]) +9 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][215] +5 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#5439]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#9766]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][218] ([i915#3023]) +9 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#3458]) +10 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#1825]) +10 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: NOTRUN -> [SKIP][221] ([i915#433]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@invalid-hdr: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#8228]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-swap: - shard-tglu: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8228]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#8228]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@kms_hdr@static-toggle.html * igt@kms_joiner@basic-big-joiner: - shard-tglu: NOTRUN -> [SKIP][225] ([i915#10656]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#10656]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: [PASS][227] -> [SKIP][228] ([i915#12388]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-10/igt@kms_joiner@invalid-modeset-force-big-joiner.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#12339]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_plane@plane-position-hole-dpms: - shard-dg2: [PASS][230] -> [SKIP][231] ([i915#8825]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@kms_plane@plane-position-hole-dpms.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_plane@plane-position-hole-dpms.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#7294]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-dg2: [PASS][233] -> [SKIP][234] ([i915#7294]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_plane_alpha_blend@constant-alpha-max.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#8821]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-8/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][236] ([i915#8292]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-14/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#12247]) +8 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#12247] / [i915#8152] / [i915#9423]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-c: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#12247]) +9 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][240] ([i915#12247]) +9 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-c: - shard-dg2: [PASS][241] -> [SKIP][242] ([i915#12247]) +8 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-c.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-c.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d: - shard-dg2: [PASS][243] -> [SKIP][244] ([i915#8152]) +2 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers: - shard-dg2: [PASS][245] -> [SKIP][246] ([i915#3555] / [i915#8152] / [i915#9423]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#3555]) +2 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-16/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: - shard-dg1: NOTRUN -> [SKIP][248] ([i915#12247]) +3 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-16/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format: - shard-dg2: [PASS][249] -> [SKIP][250] ([i915#8152] / [i915#9423]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][251] ([i915#12247] / [i915#6953]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b: - shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#12247]) +3 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#6953]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#12247] / [i915#3555] / [i915#9423]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#12247] / [i915#8152]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#12247] / [i915#6953]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a: - shard-rkl: NOTRUN -> [SKIP][258] ([i915#12247]) +4 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#12343]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-8/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-dpms: - shard-tglu: NOTRUN -> [SKIP][260] ([i915#9812]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_backlight@fade-with-suspend: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#5354]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#9292]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-dg2: [PASS][263] -> [SKIP][264] ([i915#9293]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_pm_dc@dc5-dpms-negative.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc6-psr: - shard-tglu-1: NOTRUN -> [SKIP][265] ([i915#9685]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_lpsp@screens-disabled: - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#8430]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-2/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@cursor-dpms: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#1849]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-rkl: [PASS][268] -> [SKIP][269] ([i915#9519]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-rkl-3/igt@kms_pm_rpm@dpms-non-lpsp.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-2/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][270] -> [SKIP][271] ([i915#9519]) +2 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html - shard-tglu: NOTRUN -> [SKIP][272] ([i915#9519]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-dg2: [PASS][273] -> [SKIP][274] ([i915#3547]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@kms_pm_rpm@system-suspend-modeset.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#6524] / [i915#6805]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_prime@basic-crc-vgem.html * igt@kms_prime@d3hot: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#6524]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@kms_prime@d3hot.html * igt@kms_properties@plane-properties-atomic: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#11521]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_properties@plane-properties-atomic.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][278] ([i915#11520]) +3 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#12316]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#11520]) +3 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#11520]) +2 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html - shard-dg1: NOTRUN -> [SKIP][282] ([i915#11520]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-15/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][283] ([i915#9808]) +2 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#11520]) +9 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][285] ([i915#9683]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-14/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#9683]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-sprite-blt: - shard-dg1: NOTRUN -> [SKIP][287] ([i915#1072] / [i915#9732]) +2 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-15/igt@kms_psr@fbc-pr-sprite-blt.html * igt@kms_psr@pr-cursor-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#1072] / [i915#9732]) +17 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@kms_psr@pr-cursor-mmap-cpu.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][289] ([i915#1072] / [i915#9732]) +8 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_psr@pr-no-drrs: - shard-mtlp: NOTRUN -> [SKIP][290] ([i915#9688]) +8 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-1/igt@kms_psr@pr-no-drrs.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][291] ([i915#9732]) +10 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_psr@psr2-primary-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][292] ([i915#4077] / [i915#9688]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@kms_psr@psr2-primary-mmap-gtt@edp-1.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][293] ([i915#9732]) +9 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#9685]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#5289]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][296] ([i915#5289]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#5190] / [i915#9197]) +2 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg1: NOTRUN -> [SKIP][298] ([i915#5289]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-mtlp: NOTRUN -> [SKIP][299] ([i915#11131] / [i915#4235]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#11131] / [i915#4235]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#3555]) +3 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#8623]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@lobf: - shard-rkl: NOTRUN -> [SKIP][303] ([i915#11920]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-1/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-mtlp: [PASS][304] -> [FAIL][305] ([i915#10393]) +1 other test fail [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-mtlp-1/igt@kms_vrr@negative-basic.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-7/igt@kms_vrr@negative-basic.html - shard-dg2: [PASS][306] -> [SKIP][307] ([i915#3555] / [i915#9906]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-10/igt@kms_vrr@negative-basic.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-5/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-dg1: NOTRUN -> [SKIP][308] ([i915#9906]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-19/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-mtlp: NOTRUN -> [SKIP][309] ([i915#8808] / [i915#9906]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-6/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-rkl: NOTRUN -> [SKIP][310] ([i915#9906]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#2437]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#2437] / [i915#9412]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-1/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-tglu: NOTRUN -> [SKIP][313] ([i915#2437]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#7387]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@perf@global-sseu-config.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][315] ([i915#4349]) +4 other tests fail [315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][316] ([i915#12549] / [i915#6806]) +1 other test fail [316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@rc6-all-gts: - shard-tglu: NOTRUN -> [SKIP][317] ([i915#8516]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-8/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#8516]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-8/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][319] ([i915#3291] / [i915#3708]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][320] ([i915#3708] / [i915#4077]) +1 other test skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-1/igt@prime_vgem@coherency-gtt.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-mtlp: NOTRUN -> [SKIP][321] ([i915#9917]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-8/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#9917]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-8/igt@sriov_basic@enable-vfs-autoprobe-on.html #### Possible fixes #### * igt@gem_ctx_engines@invalid-engines: - shard-tglu: [FAIL][323] ([i915#12031]) -> [PASS][324] [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-tglu-4/igt@gem_ctx_engines@invalid-engines.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-tglu-5/igt@gem_ctx_engines@invalid-engines.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][325] ([i915#12543] / [i915#5784]) -> [PASS][326] [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg1-13/igt@gem_eio@reset-stress.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-14/igt@gem_eio@reset-stress.html * igt@gem_exec_fair@basic-pace-solo: - shard-rkl: [FAIL][327] ([i915#2842]) -> [PASS][328] +1 other test pass [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-rkl-7/igt@gem_exec_fair@basic-pace-solo.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo.html * igt@i915_selftest@live: - shard-mtlp: [ABORT][329] ([i915#12133] / [i915#12216]) -> [PASS][330] [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-mtlp-7/igt@i915_selftest@live.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-2/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [ABORT][331] ([i915#12216]) -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-mtlp-7/igt@i915_selftest@live@workarounds.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-2/igt@i915_selftest@live@workarounds.html * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions: - shard-dg2: [SKIP][333] ([i915#9197]) -> [PASS][334] +4 other tests pass [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-5/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-snb: [SKIP][335] -> [PASS][336] +2 other tests pass [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-snb2/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-snb7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][337] ([i915#2346]) -> [PASS][338] [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_flip@dpms-off-confusion: - shard-dg2: [SKIP][339] ([i915#5354]) -> [PASS][340] +2 other tests pass [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_flip@dpms-off-confusion.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-5/igt@kms_flip@dpms-off-confusion.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a1: - shard-glk: [FAIL][341] ([i915#10826]) -> [PASS][342] [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-glk1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a1.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-glk5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a1.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a2: - shard-glk: [FAIL][343] ([i915#2122]) -> [PASS][344] +3 other tests pass [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-glk1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a2.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-glk5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a2.html * igt@kms_flip@plain-flip-interruptible: - shard-dg1: [DMESG-WARN][345] ([i915#4423]) -> [PASS][346] [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg1-14/igt@kms_flip@plain-flip-interruptible.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg1-17/igt@kms_flip@plain-flip-interruptible.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-snb: [FAIL][347] ([i915#2122]) -> [PASS][348] +1 other test pass [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-snb6/igt@kms_flip@plain-flip-ts-check-interruptible.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-snb2/igt@kms_flip@plain-flip-ts-check-interruptible.html - shard-mtlp: [FAIL][349] ([i915#11989] / [i915#2122]) -> [PASS][350] [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-mtlp-4/igt@kms_flip@plain-flip-ts-check-interruptible.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-3/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1: - shard-mtlp: [FAIL][351] ([i915#2122]) -> [PASS][352] [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-mtlp-4/igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-mtlp-3/igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1.html * igt@kms_plane_alpha_blend@constant-alpha-min: - shard-dg2: [SKIP][353] ([i915#7294]) -> [PASS][354] [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_plane_alpha_blend@constant-alpha-min.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-5/igt@kms_plane_alpha_blend@constant-alpha-min.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-dg2: [SKIP][355] ([i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][356] [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b: - shard-dg2: [SKIP][357] ([i915#12247]) -> [PASS][358] +2 other tests pass [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d: - shard-dg2: [SKIP][359] ([i915#12247] / [i915#8152]) -> [PASS][360] [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][361] ([i915#9519]) -> [PASS][362] +1 other test pass [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp.html #### Warnings #### * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg2: [SKIP][363] -> [SKIP][364] ([i915#9197]) +4 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: [SKIP][365] ([i915#4538] / [i915#5190]) -> [SKIP][366] ([i915#5190] / [i915#9197]) +5 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-dg2: [SKIP][367] ([i915#9197]) -> [SKIP][368] ([i915#10307] / [i915#6095]) +1 other test skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-5/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-dg2: [SKIP][369] ([i915#12313]) -> [SKIP][370] ([i915#9197]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs: - shard-dg2: [SKIP][371] ([i915#10307] / [i915#6095]) -> [SKIP][372] ([i915#9197]) +4 other tests skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html * igt@kms_color@deep-color: - shard-dg2: [SKIP][373] ([i915#3555]) -> [SKIP][374] ([i915#5354]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_color@deep-color.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_color@deep-color.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: [SKIP][375] ([i915#3299]) -> [SKIP][376] ([i915#9197]) +1 other test skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-1.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@legacy: - shard-dg2: [SKIP][377] ([i915#7118] / [i915#9424]) -> [TIMEOUT][378] ([i915#7173]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-8/igt@kms_content_protection@legacy.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-10/igt@kms_content_protection@legacy.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-dg2: [SKIP][379] ([i915#9197]) -> [SKIP][380] ([i915#3555]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_cursor_crc@cursor-offscreen-32x10.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-5/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-dg2: [SKIP][381] ([i915#3555]) -> [SKIP][382] ([i915#9197]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2: [SKIP][383] ([i915#5354]) -> [SKIP][384] ([i915#9197]) +4 other tests skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: [SKIP][385] ([i915#4103] / [i915#4213]) -> [SKIP][386] ([i915#9197]) +1 other test skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: [SKIP][387] ([i915#9833]) -> [SKIP][388] ([i915#9197]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2: [SKIP][389] ([i915#3555] / [i915#5190]) -> [SKIP][390] ([i915#2672] / [i915#3555] / [i915#5190]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-dg2: [SKIP][391] ([i915#2672] / [i915#3555] / [i915#5190]) -> [SKIP][392] ([i915#3555] / [i915#5190]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2: [SKIP][393] ([i915#5354]) -> [SKIP][394] ([i915#8708]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg2: [SKIP][395] ([i915#10433] / [i915#3458]) -> [SKIP][396] ([i915#3458]) +1 other test skip [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt: - shard-dg2: [SKIP][397] ([i915#8708]) -> [SKIP][398] ([i915#5354]) +8 other tests skip [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][399] ([i915#3458]) -> [SKIP][400] ([i915#5354]) +6 other tests skip [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite: - shard-dg2: [SKIP][401] ([i915#5354]) -> [SKIP][402] ([i915#3458]) +1 other test skip [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: [SKIP][403] ([i915#3555] / [i915#8228]) -> [SKIP][404] ([i915#9197]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_hdr@invalid-metadata-sizes.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle: - shard-dg2: [SKIP][405] ([i915#9197]) -> [SKIP][406] ([i915#3555] / [i915#8228]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-2/igt@kms_hdr@static-toggle.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-5/igt@kms_hdr@static-toggle.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][407] ([i915#4816]) -> [SKIP][408] ([i915#4070] / [i915#4816]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-dg2: [SKIP][409] ([i915#6301]) -> [SKIP][410] ([i915#9197]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-1/igt@kms_panel_fitting@legacy.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_panel_fitting@legacy.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-dg2: [SKIP][411] ([i915#12247] / [i915#6953] / [i915#9423]) -> [SKIP][412] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d: - shard-dg2: [SKIP][413] ([i915#12247]) -> [SKIP][414] ([i915#12247] / [i915#8152]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2: [SKIP][415] ([i915#5190]) -> [SKIP][416] ([i915#5190] / [i915#9197]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: [SKIP][417] -> [FAIL][418] ([i915#10959]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-glk8/igt@kms_tiled_display@basic-test-pattern.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-glk7/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: [SKIP][419] ([i915#9906]) -> [SKIP][420] ([i915#9197]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-6/igt@kms_vrr@seamless-rr-switch-vrr.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-2/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@perf@non-zero-reason: - shard-dg2: [FAIL][421] ([i915#7484]) -> [FAIL][422] ([i915#9100]) +1 other test fail [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-4/igt@perf@non-zero-reason.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-7/igt@perf@non-zero-reason.html * igt@prime_mmap@test_aperture_limit: - shard-dg2: [INCOMPLETE][423] ([i915#5493]) -> [WARN][424] ([i915#9351]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-4/igt@prime_mmap@test_aperture_limit.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/shard-dg2-6/igt@prime_mmap@test_aperture_limit.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [INCOMPLETE][425] ([i915#5493]) -> [CRASH][426] ([i915#9351]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15603/shard-dg2-4/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139267v3/index.html [-- Attachment #2: Type: text/html, Size: 109501 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-11-07 9:21 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-10-28 6:14 [PATCHv3] drm/i915/dp: Guarantee a minimum HBlank time Arun R Murthy 2024-10-28 6:47 ` Srikanth V, NagaVenkata 2024-10-28 12:56 ` Jani Nikula 2024-11-07 9:21 ` Murthy, Arun R 2024-10-28 15:26 ` Ville Syrjälä 2024-10-29 10:16 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915/dp: Guarantee a minimum HBlank time (rev3) Patchwork 2024-10-29 10:31 ` ✓ Fi.CI.BAT: success " Patchwork 2024-10-29 12:11 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-10-30 19:18 ` Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox