* [PATCH 1/3] drm/i915/cdclk: Plumb the full atomic state deeper
@ 2024-05-28 18:49 Ville Syrjala
2024-05-28 18:49 ` [PATCH 2/3] drm/i915: Plumb the full atomic state into icl_check_nv12_planes() Ville Syrjala
` (5 more replies)
0 siblings, 6 replies; 10+ messages in thread
From: Ville Syrjala @ 2024-05-28 18:49 UTC (permalink / raw)
To: intel-gfx
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Various parts of the cdclk code need access the full atomic
state. Currently it's being dug out via the cdclk_state->base.state
pointer, which is not great as that pointer isn't always valid.
Instead plumb the full atomic state from the top so that it's
clear that it is in fact valid.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_cdclk.c | 60 +++++++++++++---------
1 file changed, 35 insertions(+), 25 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.c b/drivers/gpu/drm/i915/display/intel_cdclk.c
index b78154c82a71..7ef8dcb1601a 100644
--- a/drivers/gpu/drm/i915/display/intel_cdclk.c
+++ b/drivers/gpu/drm/i915/display/intel_cdclk.c
@@ -113,7 +113,7 @@ struct intel_cdclk_funcs {
void (*set_cdclk)(struct drm_i915_private *i915,
const struct intel_cdclk_config *cdclk_config,
enum pipe pipe);
- int (*modeset_calc_cdclk)(struct intel_cdclk_state *state);
+ int (*modeset_calc_cdclk)(struct intel_atomic_state *state);
u8 (*calc_voltage_level)(int cdclk);
};
@@ -130,10 +130,11 @@ static void intel_cdclk_set_cdclk(struct drm_i915_private *dev_priv,
dev_priv->display.funcs.cdclk->set_cdclk(dev_priv, cdclk_config, pipe);
}
-static int intel_cdclk_modeset_calc_cdclk(struct drm_i915_private *dev_priv,
- struct intel_cdclk_state *cdclk_config)
+static int intel_cdclk_modeset_calc_cdclk(struct intel_atomic_state *state)
{
- return dev_priv->display.funcs.cdclk->modeset_calc_cdclk(cdclk_config);
+ struct drm_i915_private *dev_priv = to_i915(state->base.dev);
+
+ return dev_priv->display.funcs.cdclk->modeset_calc_cdclk(state);
}
static u8 intel_cdclk_calc_voltage_level(struct drm_i915_private *dev_priv,
@@ -2834,10 +2835,11 @@ int intel_crtc_compute_min_cdclk(const struct intel_crtc_state *crtc_state)
return min_cdclk;
}
-static int intel_compute_min_cdclk(struct intel_cdclk_state *cdclk_state)
+static int intel_compute_min_cdclk(struct intel_atomic_state *state)
{
- struct intel_atomic_state *state = cdclk_state->base.state;
struct drm_i915_private *dev_priv = to_i915(state->base.dev);
+ struct intel_cdclk_state *cdclk_state =
+ intel_atomic_get_new_cdclk_state(state);
const struct intel_bw_state *bw_state;
struct intel_crtc *crtc;
struct intel_crtc_state *crtc_state;
@@ -2916,10 +2918,11 @@ static int intel_compute_min_cdclk(struct intel_cdclk_state *cdclk_state)
* future platforms this code will need to be
* adjusted.
*/
-static int bxt_compute_min_voltage_level(struct intel_cdclk_state *cdclk_state)
+static int bxt_compute_min_voltage_level(struct intel_atomic_state *state)
{
- struct intel_atomic_state *state = cdclk_state->base.state;
struct drm_i915_private *dev_priv = to_i915(state->base.dev);
+ struct intel_cdclk_state *cdclk_state =
+ intel_atomic_get_new_cdclk_state(state);
struct intel_crtc *crtc;
struct intel_crtc_state *crtc_state;
u8 min_voltage_level;
@@ -2952,13 +2955,14 @@ static int bxt_compute_min_voltage_level(struct intel_cdclk_state *cdclk_state)
return min_voltage_level;
}
-static int vlv_modeset_calc_cdclk(struct intel_cdclk_state *cdclk_state)
+static int vlv_modeset_calc_cdclk(struct intel_atomic_state *state)
{
- struct intel_atomic_state *state = cdclk_state->base.state;
struct drm_i915_private *dev_priv = to_i915(state->base.dev);
+ struct intel_cdclk_state *cdclk_state =
+ intel_atomic_get_new_cdclk_state(state);
int min_cdclk, cdclk;
- min_cdclk = intel_compute_min_cdclk(cdclk_state);
+ min_cdclk = intel_compute_min_cdclk(state);
if (min_cdclk < 0)
return min_cdclk;
@@ -2981,11 +2985,13 @@ static int vlv_modeset_calc_cdclk(struct intel_cdclk_state *cdclk_state)
return 0;
}
-static int bdw_modeset_calc_cdclk(struct intel_cdclk_state *cdclk_state)
+static int bdw_modeset_calc_cdclk(struct intel_atomic_state *state)
{
+ struct intel_cdclk_state *cdclk_state =
+ intel_atomic_get_new_cdclk_state(state);
int min_cdclk, cdclk;
- min_cdclk = intel_compute_min_cdclk(cdclk_state);
+ min_cdclk = intel_compute_min_cdclk(state);
if (min_cdclk < 0)
return min_cdclk;
@@ -3008,10 +3014,11 @@ static int bdw_modeset_calc_cdclk(struct intel_cdclk_state *cdclk_state)
return 0;
}
-static int skl_dpll0_vco(struct intel_cdclk_state *cdclk_state)
+static int skl_dpll0_vco(struct intel_atomic_state *state)
{
- struct intel_atomic_state *state = cdclk_state->base.state;
struct drm_i915_private *dev_priv = to_i915(state->base.dev);
+ struct intel_cdclk_state *cdclk_state =
+ intel_atomic_get_new_cdclk_state(state);
struct intel_crtc *crtc;
struct intel_crtc_state *crtc_state;
int vco, i;
@@ -3045,15 +3052,17 @@ static int skl_dpll0_vco(struct intel_cdclk_state *cdclk_state)
return vco;
}
-static int skl_modeset_calc_cdclk(struct intel_cdclk_state *cdclk_state)
+static int skl_modeset_calc_cdclk(struct intel_atomic_state *state)
{
+ struct intel_cdclk_state *cdclk_state =
+ intel_atomic_get_new_cdclk_state(state);
int min_cdclk, cdclk, vco;
- min_cdclk = intel_compute_min_cdclk(cdclk_state);
+ min_cdclk = intel_compute_min_cdclk(state);
if (min_cdclk < 0)
return min_cdclk;
- vco = skl_dpll0_vco(cdclk_state);
+ vco = skl_dpll0_vco(state);
cdclk = skl_calc_cdclk(min_cdclk, vco);
@@ -3076,17 +3085,18 @@ static int skl_modeset_calc_cdclk(struct intel_cdclk_state *cdclk_state)
return 0;
}
-static int bxt_modeset_calc_cdclk(struct intel_cdclk_state *cdclk_state)
+static int bxt_modeset_calc_cdclk(struct intel_atomic_state *state)
{
- struct intel_atomic_state *state = cdclk_state->base.state;
struct drm_i915_private *dev_priv = to_i915(state->base.dev);
+ struct intel_cdclk_state *cdclk_state =
+ intel_atomic_get_new_cdclk_state(state);
int min_cdclk, min_voltage_level, cdclk, vco;
- min_cdclk = intel_compute_min_cdclk(cdclk_state);
+ min_cdclk = intel_compute_min_cdclk(state);
if (min_cdclk < 0)
return min_cdclk;
- min_voltage_level = bxt_compute_min_voltage_level(cdclk_state);
+ min_voltage_level = bxt_compute_min_voltage_level(state);
if (min_voltage_level < 0)
return min_voltage_level;
@@ -3114,7 +3124,7 @@ static int bxt_modeset_calc_cdclk(struct intel_cdclk_state *cdclk_state)
return 0;
}
-static int fixed_modeset_calc_cdclk(struct intel_cdclk_state *cdclk_state)
+static int fixed_modeset_calc_cdclk(struct intel_atomic_state *state)
{
int min_cdclk;
@@ -3123,7 +3133,7 @@ static int fixed_modeset_calc_cdclk(struct intel_cdclk_state *cdclk_state)
* check that the required minimum frequency doesn't exceed
* the actual cdclk frequency.
*/
- min_cdclk = intel_compute_min_cdclk(cdclk_state);
+ min_cdclk = intel_compute_min_cdclk(state);
if (min_cdclk < 0)
return min_cdclk;
@@ -3263,7 +3273,7 @@ int intel_modeset_calc_cdclk(struct intel_atomic_state *state)
new_cdclk_state->active_pipes =
intel_calc_active_pipes(state, old_cdclk_state->active_pipes);
- ret = intel_cdclk_modeset_calc_cdclk(dev_priv, new_cdclk_state);
+ ret = intel_cdclk_modeset_calc_cdclk(state);
if (ret)
return ret;
--
2.44.1
^ permalink raw reply related [flat|nested] 10+ messages in thread* [PATCH 2/3] drm/i915: Plumb the full atomic state into icl_check_nv12_planes() 2024-05-28 18:49 [PATCH 1/3] drm/i915/cdclk: Plumb the full atomic state deeper Ville Syrjala @ 2024-05-28 18:49 ` Ville Syrjala 2024-05-30 12:57 ` Jani Nikula 2024-05-28 18:49 ` [PATCH 3/3] drm/i915: Plumb the full atomic state into skl_ddb_add_affected_planes() Ville Syrjala ` (4 subsequent siblings) 5 siblings, 1 reply; 10+ messages in thread From: Ville Syrjala @ 2024-05-28 18:49 UTC (permalink / raw) To: intel-gfx From: Ville Syrjälä <ville.syrjala@linux.intel.com> icl_check_nv12_planes() needs the full atomic state. Instead of digging that out from dubious sources plumb it in explicitly. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- drivers/gpu/drm/i915/display/intel_display.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c index 071ba95a1472..dbbc72494a46 100644 --- a/drivers/gpu/drm/i915/display/intel_display.c +++ b/drivers/gpu/drm/i915/display/intel_display.c @@ -4033,11 +4033,12 @@ static int icl_add_linked_planes(struct intel_atomic_state *state) return 0; } -static int icl_check_nv12_planes(struct intel_crtc_state *crtc_state) +static int icl_check_nv12_planes(struct intel_atomic_state *state, + struct intel_crtc *crtc) { - struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc); - struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); - struct intel_atomic_state *state = to_intel_atomic_state(crtc_state->uapi.state); + struct drm_i915_private *dev_priv = to_i915(state->base.dev); + struct intel_crtc_state *crtc_state = + intel_atomic_get_new_crtc_state(state, crtc); struct intel_plane *plane, *linked; struct intel_plane_state *plane_state; int i; @@ -5786,7 +5787,7 @@ static int intel_atomic_check_planes(struct intel_atomic_state *state) new_crtc_state, i) { u8 old_active_planes, new_active_planes; - ret = icl_check_nv12_planes(new_crtc_state); + ret = icl_check_nv12_planes(state, crtc); if (ret) return ret; -- 2.44.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH 2/3] drm/i915: Plumb the full atomic state into icl_check_nv12_planes() 2024-05-28 18:49 ` [PATCH 2/3] drm/i915: Plumb the full atomic state into icl_check_nv12_planes() Ville Syrjala @ 2024-05-30 12:57 ` Jani Nikula 2024-05-31 7:16 ` Ville Syrjälä 0 siblings, 1 reply; 10+ messages in thread From: Jani Nikula @ 2024-05-30 12:57 UTC (permalink / raw) To: Ville Syrjala, intel-gfx On Tue, 28 May 2024, Ville Syrjala <ville.syrjala@linux.intel.com> wrote: > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > icl_check_nv12_planes() needs the full atomic state. Instead of > digging that out from dubious sources plumb it in explicitly. > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Are most to_intel_atomic_state() uses suspect...? Reviewed-by: Jani Nikula <jani.nikula@intel.com> > --- > drivers/gpu/drm/i915/display/intel_display.c | 11 ++++++----- > 1 file changed, 6 insertions(+), 5 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c > index 071ba95a1472..dbbc72494a46 100644 > --- a/drivers/gpu/drm/i915/display/intel_display.c > +++ b/drivers/gpu/drm/i915/display/intel_display.c > @@ -4033,11 +4033,12 @@ static int icl_add_linked_planes(struct intel_atomic_state *state) > return 0; > } > > -static int icl_check_nv12_planes(struct intel_crtc_state *crtc_state) > +static int icl_check_nv12_planes(struct intel_atomic_state *state, > + struct intel_crtc *crtc) > { > - struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc); > - struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); > - struct intel_atomic_state *state = to_intel_atomic_state(crtc_state->uapi.state); > + struct drm_i915_private *dev_priv = to_i915(state->base.dev); > + struct intel_crtc_state *crtc_state = > + intel_atomic_get_new_crtc_state(state, crtc); > struct intel_plane *plane, *linked; > struct intel_plane_state *plane_state; > int i; > @@ -5786,7 +5787,7 @@ static int intel_atomic_check_planes(struct intel_atomic_state *state) > new_crtc_state, i) { > u8 old_active_planes, new_active_planes; > > - ret = icl_check_nv12_planes(new_crtc_state); > + ret = icl_check_nv12_planes(state, crtc); > if (ret) > return ret; -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 2/3] drm/i915: Plumb the full atomic state into icl_check_nv12_planes() 2024-05-30 12:57 ` Jani Nikula @ 2024-05-31 7:16 ` Ville Syrjälä 0 siblings, 0 replies; 10+ messages in thread From: Ville Syrjälä @ 2024-05-31 7:16 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx On Thu, May 30, 2024 at 03:57:16PM +0300, Jani Nikula wrote: > On Tue, 28 May 2024, Ville Syrjala <ville.syrjala@linux.intel.com> wrote: > > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > > > icl_check_nv12_planes() needs the full atomic state. Instead of > > digging that out from dubious sources plumb it in explicitly. > > > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > > Are most to_intel_atomic_state() uses suspect...? The ones of the form to_intel_atomic_state(foo_obj_state->state). Though I guess "suspect" is a bit strong. They do work as long as its done before swap_state(), but after that they just give you NULL. Which can easily bite you when you think you found some useful helper function and then proceed to call it during the actual commit phase and get greeted by an oops. So "undesirable" is perhaps a better way to put it. I would like to get rid of all of these, if possible. > > Reviewed-by: Jani Nikula <jani.nikula@intel.com> > > > --- > > drivers/gpu/drm/i915/display/intel_display.c | 11 ++++++----- > > 1 file changed, 6 insertions(+), 5 deletions(-) > > > > diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c > > index 071ba95a1472..dbbc72494a46 100644 > > --- a/drivers/gpu/drm/i915/display/intel_display.c > > +++ b/drivers/gpu/drm/i915/display/intel_display.c > > @@ -4033,11 +4033,12 @@ static int icl_add_linked_planes(struct intel_atomic_state *state) > > return 0; > > } > > > > -static int icl_check_nv12_planes(struct intel_crtc_state *crtc_state) > > +static int icl_check_nv12_planes(struct intel_atomic_state *state, > > + struct intel_crtc *crtc) > > { > > - struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc); > > - struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); > > - struct intel_atomic_state *state = to_intel_atomic_state(crtc_state->uapi.state); > > + struct drm_i915_private *dev_priv = to_i915(state->base.dev); > > + struct intel_crtc_state *crtc_state = > > + intel_atomic_get_new_crtc_state(state, crtc); > > struct intel_plane *plane, *linked; > > struct intel_plane_state *plane_state; > > int i; > > @@ -5786,7 +5787,7 @@ static int intel_atomic_check_planes(struct intel_atomic_state *state) > > new_crtc_state, i) { > > u8 old_active_planes, new_active_planes; > > > > - ret = icl_check_nv12_planes(new_crtc_state); > > + ret = icl_check_nv12_planes(state, crtc); > > if (ret) > > return ret; > > -- > Jani Nikula, Intel -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 3/3] drm/i915: Plumb the full atomic state into skl_ddb_add_affected_planes() 2024-05-28 18:49 [PATCH 1/3] drm/i915/cdclk: Plumb the full atomic state deeper Ville Syrjala 2024-05-28 18:49 ` [PATCH 2/3] drm/i915: Plumb the full atomic state into icl_check_nv12_planes() Ville Syrjala @ 2024-05-28 18:49 ` Ville Syrjala 2024-05-30 13:00 ` Jani Nikula 2024-05-28 19:25 ` ✗ Fi.CI.SPARSE: warning for series starting with [1/3] drm/i915/cdclk: Plumb the full atomic state deeper Patchwork ` (3 subsequent siblings) 5 siblings, 1 reply; 10+ messages in thread From: Ville Syrjala @ 2024-05-28 18:49 UTC (permalink / raw) To: intel-gfx From: Ville Syrjälä <ville.syrjala@linux.intel.com> skl_ddb_add_affected_planes() needs the full atomic state. Instead of digging that out from dubious sources plumb it in explicitly. The wm counterpart (skl_wm_add_affected_planes()) already does things in the proper way. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- drivers/gpu/drm/i915/display/skl_watermark.c | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c b/drivers/gpu/drm/i915/display/skl_watermark.c index 2064f72da675..a2726364b34d 100644 --- a/drivers/gpu/drm/i915/display/skl_watermark.c +++ b/drivers/gpu/drm/i915/display/skl_watermark.c @@ -2429,12 +2429,14 @@ bool skl_ddb_allocation_overlaps(const struct skl_ddb_entry *ddb, } static int -skl_ddb_add_affected_planes(const struct intel_crtc_state *old_crtc_state, - struct intel_crtc_state *new_crtc_state) +skl_ddb_add_affected_planes(struct intel_atomic_state *state, + struct intel_crtc *crtc) { - struct intel_atomic_state *state = to_intel_atomic_state(new_crtc_state->uapi.state); - struct intel_crtc *crtc = to_intel_crtc(new_crtc_state->uapi.crtc); - struct drm_i915_private *i915 = to_i915(crtc->base.dev); + struct drm_i915_private *i915 = to_i915(state->base.dev); + const struct intel_crtc_state *old_crtc_state = + intel_atomic_get_old_crtc_state(state, crtc); + struct intel_crtc_state *new_crtc_state = + intel_atomic_get_new_crtc_state(state, crtc); struct intel_plane *plane; for_each_intel_plane_on_crtc(&i915->drm, crtc, plane) { @@ -2489,7 +2491,6 @@ skl_compute_ddb(struct intel_atomic_state *state) struct drm_i915_private *i915 = to_i915(state->base.dev); const struct intel_dbuf_state *old_dbuf_state; struct intel_dbuf_state *new_dbuf_state = NULL; - const struct intel_crtc_state *old_crtc_state; struct intel_crtc_state *new_crtc_state; struct intel_crtc *crtc; int ret, i; @@ -2577,14 +2578,12 @@ skl_compute_ddb(struct intel_atomic_state *state) return ret; } - for_each_oldnew_intel_crtc_in_state(state, crtc, old_crtc_state, - new_crtc_state, i) { + for_each_new_intel_crtc_in_state(state, crtc, new_crtc_state, i) { ret = skl_crtc_allocate_plane_ddb(state, crtc); if (ret) return ret; - ret = skl_ddb_add_affected_planes(old_crtc_state, - new_crtc_state); + ret = skl_ddb_add_affected_planes(state, crtc); if (ret) return ret; } -- 2.44.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH 3/3] drm/i915: Plumb the full atomic state into skl_ddb_add_affected_planes() 2024-05-28 18:49 ` [PATCH 3/3] drm/i915: Plumb the full atomic state into skl_ddb_add_affected_planes() Ville Syrjala @ 2024-05-30 13:00 ` Jani Nikula 0 siblings, 0 replies; 10+ messages in thread From: Jani Nikula @ 2024-05-30 13:00 UTC (permalink / raw) To: Ville Syrjala, intel-gfx On Tue, 28 May 2024, Ville Syrjala <ville.syrjala@linux.intel.com> wrote: > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > skl_ddb_add_affected_planes() needs the full atomic state. Instead > of digging that out from dubious sources plumb it in explicitly. > > The wm counterpart (skl_wm_add_affected_planes()) already does > things in the proper way. > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Reviewed-by: Jani Nikula <jani.nikula@intel.com> > --- > drivers/gpu/drm/i915/display/skl_watermark.c | 19 +++++++++---------- > 1 file changed, 9 insertions(+), 10 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c b/drivers/gpu/drm/i915/display/skl_watermark.c > index 2064f72da675..a2726364b34d 100644 > --- a/drivers/gpu/drm/i915/display/skl_watermark.c > +++ b/drivers/gpu/drm/i915/display/skl_watermark.c > @@ -2429,12 +2429,14 @@ bool skl_ddb_allocation_overlaps(const struct skl_ddb_entry *ddb, > } > > static int > -skl_ddb_add_affected_planes(const struct intel_crtc_state *old_crtc_state, > - struct intel_crtc_state *new_crtc_state) > +skl_ddb_add_affected_planes(struct intel_atomic_state *state, > + struct intel_crtc *crtc) > { > - struct intel_atomic_state *state = to_intel_atomic_state(new_crtc_state->uapi.state); > - struct intel_crtc *crtc = to_intel_crtc(new_crtc_state->uapi.crtc); > - struct drm_i915_private *i915 = to_i915(crtc->base.dev); > + struct drm_i915_private *i915 = to_i915(state->base.dev); > + const struct intel_crtc_state *old_crtc_state = > + intel_atomic_get_old_crtc_state(state, crtc); > + struct intel_crtc_state *new_crtc_state = > + intel_atomic_get_new_crtc_state(state, crtc); > struct intel_plane *plane; > > for_each_intel_plane_on_crtc(&i915->drm, crtc, plane) { > @@ -2489,7 +2491,6 @@ skl_compute_ddb(struct intel_atomic_state *state) > struct drm_i915_private *i915 = to_i915(state->base.dev); > const struct intel_dbuf_state *old_dbuf_state; > struct intel_dbuf_state *new_dbuf_state = NULL; > - const struct intel_crtc_state *old_crtc_state; > struct intel_crtc_state *new_crtc_state; > struct intel_crtc *crtc; > int ret, i; > @@ -2577,14 +2578,12 @@ skl_compute_ddb(struct intel_atomic_state *state) > return ret; > } > > - for_each_oldnew_intel_crtc_in_state(state, crtc, old_crtc_state, > - new_crtc_state, i) { > + for_each_new_intel_crtc_in_state(state, crtc, new_crtc_state, i) { > ret = skl_crtc_allocate_plane_ddb(state, crtc); > if (ret) > return ret; > > - ret = skl_ddb_add_affected_planes(old_crtc_state, > - new_crtc_state); > + ret = skl_ddb_add_affected_planes(state, crtc); > if (ret) > return ret; > } -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Fi.CI.SPARSE: warning for series starting with [1/3] drm/i915/cdclk: Plumb the full atomic state deeper 2024-05-28 18:49 [PATCH 1/3] drm/i915/cdclk: Plumb the full atomic state deeper Ville Syrjala 2024-05-28 18:49 ` [PATCH 2/3] drm/i915: Plumb the full atomic state into icl_check_nv12_planes() Ville Syrjala 2024-05-28 18:49 ` [PATCH 3/3] drm/i915: Plumb the full atomic state into skl_ddb_add_affected_planes() Ville Syrjala @ 2024-05-28 19:25 ` Patchwork 2024-05-28 19:33 ` ✓ Fi.CI.BAT: success " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-05-28 19:25 UTC (permalink / raw) To: Ville Syrjälä; +Cc: intel-gfx == Series Details == Series: series starting with [1/3] drm/i915/cdclk: Plumb the full atomic state deeper URL : https://patchwork.freedesktop.org/series/134150/ State : warning == Summary == Error: dim sparse failed Sparse version: v0.6.2 Fast mode used, each commit won't be checked separately. +./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:137:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:137:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:139:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:139:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'break' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'break' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'continue' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'continue' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1' +./include/asm-generic/bitops/generic-non-atomic.h:140:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:140:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:151:1: warning: too many warnings +./include/asm-generic/bitops/instrumented-non-atomic.h:151:1: warning: too many warnings +./include/asm-generic/bitops/instrumented-non-atomic.h:154:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:154:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return' ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Fi.CI.BAT: success for series starting with [1/3] drm/i915/cdclk: Plumb the full atomic state deeper 2024-05-28 18:49 [PATCH 1/3] drm/i915/cdclk: Plumb the full atomic state deeper Ville Syrjala ` (2 preceding siblings ...) 2024-05-28 19:25 ` ✗ Fi.CI.SPARSE: warning for series starting with [1/3] drm/i915/cdclk: Plumb the full atomic state deeper Patchwork @ 2024-05-28 19:33 ` Patchwork 2024-05-29 13:15 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-05-30 12:54 ` [PATCH 1/3] " Jani Nikula 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-05-28 19:33 UTC (permalink / raw) To: Ville Syrjälä; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 10241 bytes --] == Series Details == Series: series starting with [1/3] drm/i915/cdclk: Plumb the full atomic state deeper URL : https://patchwork.freedesktop.org/series/134150/ State : success == Summary == CI Bug Log - changes from CI_DRM_14837 -> Patchwork_134150v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/index.html Participating hosts (38 -> 40) ------------------------------ Additional (3): fi-kbl-7567u bat-mtlp-6 bat-jsl-3 Missing (1): fi-kbl-8809g Known issues ------------ Here are the changes found in Patchwork_134150v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-jsl-3: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/bat-jsl-3/igt@debugfs_test@basic-hwmon.html - bat-mtlp-6: NOTRUN -> [SKIP][2] ([i915#9318]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/bat-mtlp-6/igt@debugfs_test@basic-hwmon.html * igt@fbdev@info: - bat-mtlp-6: NOTRUN -> [SKIP][3] ([i915#1849] / [i915#2582]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/bat-mtlp-6/igt@fbdev@info.html * igt@fbdev@write: - bat-mtlp-6: NOTRUN -> [SKIP][4] ([i915#2582]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/bat-mtlp-6/igt@fbdev@write.html * igt@gem_huc_copy@huc-copy: - fi-kbl-7567u: NOTRUN -> [SKIP][5] ([i915#2190]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/fi-kbl-7567u/igt@gem_huc_copy@huc-copy.html - bat-jsl-3: NOTRUN -> [SKIP][6] ([i915#2190]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/bat-jsl-3/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - bat-jsl-3: NOTRUN -> [SKIP][7] ([i915#4613]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/bat-jsl-3/igt@gem_lmem_swapping@basic.html - fi-kbl-7567u: NOTRUN -> [SKIP][8] ([i915#4613]) +3 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/fi-kbl-7567u/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@verify-random: - bat-mtlp-6: NOTRUN -> [SKIP][9] ([i915#4613]) +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/bat-mtlp-6/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap@basic: - bat-mtlp-6: NOTRUN -> [SKIP][10] ([i915#4083]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/bat-mtlp-6/igt@gem_mmap@basic.html * igt@gem_tiled_blits@basic: - bat-mtlp-6: NOTRUN -> [SKIP][11] ([i915#4077]) +2 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/bat-mtlp-6/igt@gem_tiled_blits@basic.html * igt@gem_tiled_pread_basic: - bat-mtlp-6: NOTRUN -> [SKIP][12] ([i915#4079]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/bat-mtlp-6/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-mtlp-6: NOTRUN -> [SKIP][13] ([i915#6621]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/bat-mtlp-6/igt@i915_pm_rps@basic-api.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - bat-mtlp-6: NOTRUN -> [SKIP][14] ([i915#4212] / [i915#9792]) +8 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/bat-mtlp-6/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-mtlp-6: NOTRUN -> [SKIP][15] ([i915#5190] / [i915#9792]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/bat-mtlp-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-jsl-3: NOTRUN -> [SKIP][16] ([i915#4103]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/bat-jsl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: - bat-mtlp-6: NOTRUN -> [SKIP][17] ([i915#9792]) +17 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/bat-mtlp-6/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-jsl-3: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9886]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/bat-jsl-3/igt@kms_dsc@dsc-basic.html * igt@kms_flip@basic-flip-vs-dpms: - bat-mtlp-6: NOTRUN -> [SKIP][19] ([i915#3637] / [i915#9792]) +3 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/bat-mtlp-6/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_force_connector_basic@force-load-detect: - fi-kbl-7567u: NOTRUN -> [SKIP][20] +11 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/fi-kbl-7567u/igt@kms_force_connector_basic@force-load-detect.html - bat-jsl-3: NOTRUN -> [SKIP][21] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/bat-jsl-3/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-mtlp-6: NOTRUN -> [SKIP][22] ([i915#5274] / [i915#9792]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/bat-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@basic: - bat-mtlp-6: NOTRUN -> [SKIP][23] ([i915#4342] / [i915#5354] / [i915#9792]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/bat-mtlp-6/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pm_backlight@basic-brightness: - bat-mtlp-6: NOTRUN -> [SKIP][24] ([i915#5354] / [i915#9792]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/bat-mtlp-6/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-cursor-plane-move: - bat-mtlp-6: NOTRUN -> [SKIP][25] ([i915#1072] / [i915#9673] / [i915#9732] / [i915#9792]) +3 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/bat-mtlp-6/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_setmode@basic-clone-single-crtc: - bat-jsl-3: NOTRUN -> [SKIP][26] ([i915#3555]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/bat-jsl-3/igt@kms_setmode@basic-clone-single-crtc.html - bat-mtlp-6: NOTRUN -> [SKIP][27] ([i915#3555] / [i915#8809] / [i915#9792]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/bat-mtlp-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-mtlp-6: NOTRUN -> [SKIP][28] ([i915#3708] / [i915#9792]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/bat-mtlp-6/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-mtlp-6: NOTRUN -> [SKIP][29] ([i915#3708] / [i915#4077]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/bat-mtlp-6/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-read: - bat-mtlp-6: NOTRUN -> [SKIP][30] ([i915#3708]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/bat-mtlp-6/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - bat-mtlp-6: NOTRUN -> [SKIP][31] ([i915#10216] / [i915#3708]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/bat-mtlp-6/igt@prime_vgem@basic-write.html [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4342 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792 [i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886 Build changes ------------- * Linux: CI_DRM_14837 -> Patchwork_134150v1 CI-20190529: 20190529 CI_DRM_14837: a86e8e1b93dba695cc2f1820a8b4de6a161487e7 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7872: baba9988c34c55977332044f3521cfbba80ca630 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_134150v1: a86e8e1b93dba695cc2f1820a8b4de6a161487e7 @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/index.html [-- Attachment #2: Type: text/html, Size: 13067 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Fi.CI.IGT: failure for series starting with [1/3] drm/i915/cdclk: Plumb the full atomic state deeper 2024-05-28 18:49 [PATCH 1/3] drm/i915/cdclk: Plumb the full atomic state deeper Ville Syrjala ` (3 preceding siblings ...) 2024-05-28 19:33 ` ✓ Fi.CI.BAT: success " Patchwork @ 2024-05-29 13:15 ` Patchwork 2024-05-30 12:54 ` [PATCH 1/3] " Jani Nikula 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-05-29 13:15 UTC (permalink / raw) To: Ville Syrjälä; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 83694 bytes --] == Series Details == Series: series starting with [1/3] drm/i915/cdclk: Plumb the full atomic state deeper URL : https://patchwork.freedesktop.org/series/134150/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14837_full -> Patchwork_134150v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_134150v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_134150v1_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 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_134150v1_full: ### IGT changes ### #### Possible regressions #### * igt@gem_mmap_offset@clear@smem0: - shard-mtlp: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-mtlp-3/igt@gem_mmap_offset@clear@smem0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-4/igt@gem_mmap_offset@clear@smem0.html * igt@i915_pm_rps@reset: - shard-dg2: NOTRUN -> [FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-7/igt@i915_pm_rps@reset.html * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size: - shard-snb: [PASS][4] -> [ABORT][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-snb2/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-snb5/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-b-hdmi-a-1: - shard-snb: [PASS][6] -> [DMESG-WARN][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-snb5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-b-hdmi-a-1.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-snb5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-b-hdmi-a-1.html Known issues ------------ Here are the changes found in Patchwork_134150v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@api_intel_bb@blit-reloc-purge-cache.html - shard-rkl: NOTRUN -> [SKIP][9] ([i915#8411]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#6230]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-3/igt@api_intel_bb@crc32.html * igt@drm_fdinfo@busy-idle-check-all@vcs0: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8414]) +6 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-7/igt@drm_fdinfo@busy-idle-check-all@vcs0.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#3936]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-6/igt@gem_busy@semaphore.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-5/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-process: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#7697]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@gem_close_race@multigpu-basic-process.html - shard-rkl: NOTRUN -> [SKIP][16] ([i915#7697]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@gem_close_race@multigpu-basic-process.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#7697]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-7/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-set-pat: - shard-tglu: NOTRUN -> [SKIP][18] ([i915#8562]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-4/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][19] -> [FAIL][20] ([i915#6268]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-6/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#8555]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-11/igt@gem_ctx_persistence@hang.html - shard-dg1: NOTRUN -> [SKIP][22] ([i915#8555]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#5882]) +6 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-8/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-11/igt@gem_ctx_sseu@mmap-args.html - shard-dg1: NOTRUN -> [SKIP][25] ([i915#280]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][26] ([i915#10030] / [i915#7975] / [i915#8213]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-8/igt@gem_eio@hibernate.html * igt@gem_eio@kms: - shard-dg2: [PASS][27] -> [INCOMPLETE][28] ([i915#10513]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-dg2-2/igt@gem_eio@kms.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-10/igt@gem_eio@kms.html * igt@gem_eio@reset-stress: - shard-dg1: NOTRUN -> [FAIL][29] ([i915#5784]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@gem_eio@reset-stress.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][30] -> [FAIL][31] ([i915#5784]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-dg1-14/igt@gem_eio@unwedge-stress.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#4771]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-6/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#4525]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][34] ([i915#6334]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-glk5/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#6344]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_capture@many-4k-zero: - shard-rkl: NOTRUN -> [FAIL][36] ([i915#9606]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-5/igt@gem_exec_capture@many-4k-zero.html * igt@gem_exec_fair@basic-none: - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4473] / [i915#4771]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-11/igt@gem_exec_fair@basic-none-rrul.html - shard-dg1: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: NOTRUN -> [FAIL][40] ([i915#2842]) +4 other tests fail [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_reloc@basic-cpu-wc: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#3281]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@gem_exec_reloc@basic-cpu-wc.html * igt@gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#3281]) +7 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-read-noreloc.html - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#3281]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3281]) +6 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-6/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4537] / [i915#4812]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-11/igt@gem_exec_schedule@reorder-wide.html - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4812]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#7276]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_whisper@basic-fds-all: - shard-dg2: [PASS][48] -> [INCOMPLETE][49] ([i915#9857]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-dg2-2/igt@gem_exec_whisper@basic-fds-all.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-10/igt@gem_exec_whisper@basic-fds-all.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4860]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-8/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#2190]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-multi@lmem0: - shard-dg1: [PASS][52] -> [FAIL][53] ([i915#10378]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-dg1-14/igt@gem_lmem_swapping@heavy-multi@lmem0.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-18/igt@gem_lmem_swapping@heavy-multi@lmem0.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][54] ([i915#4613]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-glk3/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg2: [PASS][55] -> [FAIL][56] ([i915#10378]) +1 other test fail [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-dg2-6/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@gem_lmem_swapping@heavy-verify-random@lmem0: - shard-dg2: NOTRUN -> [FAIL][57] ([i915#10378]) +1 other test fail [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-7/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#4613]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [PASS][59] -> [TIMEOUT][60] ([i915#5493]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4613]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@gem_lmem_swapping@verify.html * igt@gem_lmem_swapping@verify-ccs: - shard-tglu: NOTRUN -> [SKIP][62] ([i915#4613]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-4/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_mmap_gtt@basic-write: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4077]) +9 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-6/igt@gem_mmap_gtt@basic-write.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4077]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_gtt@medium-copy-odd: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4077]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@gem_mmap_gtt@medium-copy-odd.html * igt@gem_mmap_wc@set-cache-level: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4083]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@gem_mmap_wc@set-cache-level.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4083]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-11/igt@gem_mmap_wc@write-prefaulted.html - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4083]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_partial_pwrite_pread@write: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#3282]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-11/igt@gem_partial_pwrite_pread@write.html - shard-dg1: NOTRUN -> [SKIP][70] ([i915#3282]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@gem_partial_pwrite_pread@write.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#4270]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-5/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4270]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-7/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-tglu: NOTRUN -> [SKIP][73] ([i915#4270]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-4/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4270]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@yf-tiled-to-vebox-x-tiled: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#5190] / [i915#8428]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-7/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html * igt@gem_render_copy@yf-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#8428]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#3282]) +4 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-5/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-tglu: NOTRUN -> [SKIP][78] ([i915#3297]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-9/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#3282] / [i915#3297]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-8/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3297] / [i915#4880]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#3297]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-3/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@readonly-unsync: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#3297]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-11/igt@gem_userptr_blits@readonly-unsync.html - shard-dg1: NOTRUN -> [SKIP][83] ([i915#3297]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@gem_userptr_blits@readonly-unsync.html * igt@gen9_exec_parse@batch-zero-length: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#2856]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-start-far: - shard-tglu: NOTRUN -> [SKIP][85] ([i915#2527] / [i915#2856]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-4/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@bb-start-out: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#2527]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#2856]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-6/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@unaligned-access: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#2527]) +5 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@gen9_exec_parse@unaligned-access.html * igt@i915_module_load@load: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#6227]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-6/igt@i915_module_load@load.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu: NOTRUN -> [SKIP][90] ([i915#8399]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-4/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#8399]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#6621]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-11/igt@i915_pm_rps@min-max-config-loaded.html - shard-dg1: NOTRUN -> [SKIP][93] ([i915#6621]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@reset: - shard-tglu: [PASS][94] -> [INCOMPLETE][95] ([i915#11165]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-tglu-9/igt@i915_pm_rps@reset.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-5/igt@i915_pm_rps@reset.html * igt@i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][96] ([i915#7984]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@i915_power@sanity.html * igt@i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#6245]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-5/igt@i915_query@hwconfig_table.html * igt@i915_selftest@mock@memory_region: - shard-glk: NOTRUN -> [DMESG-WARN][98] ([i915#9311]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-glk5/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][99] ([i915#7443]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-9/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#5190]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#4215] / [i915#5190]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#3826]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html - shard-rkl: NOTRUN -> [SKIP][103] ([i915#3826]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#8709]) +7 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-4-4-rc-ccs-cc: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#8709]) +11 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-4-4-rc-ccs-cc.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][106] ([i915#1769]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-glk3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][107] ([i915#1769] / [i915#3555]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#5286]) +5 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-addfb: - shard-tglu: NOTRUN -> [SKIP][109] ([i915#5286]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-4/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#4538] / [i915#5286]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#3638]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-18/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#3638]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][113] +4 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#4538] / [i915#5190]) +8 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#6187]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#4538]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_joiner@basic: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#10656]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@kms_big_joiner@basic.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-8/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#6095]) +53 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#10278]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-11/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html - shard-dg1: NOTRUN -> [SKIP][121] ([i915#10278]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#6095]) +71 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-17/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][123] ([i915#6095]) +7 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#10307] / [i915#6095]) +147 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-11/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs: - shard-tglu: NOTRUN -> [SKIP][125] ([i915#10278]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-4/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][126] +136 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-glk5/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#4087]) +3 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][128] +10 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-6/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@hdmi-mode-timings: - shard-tglu: NOTRUN -> [SKIP][129] ([i915#7828]) +2 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-9/igt@kms_chamelium_edid@hdmi-mode-timings.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#7828]) +6 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-11/igt@kms_chamelium_frames@dp-frame-dump.html - shard-dg1: NOTRUN -> [SKIP][131] ([i915#7828]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#7828]) +7 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-5/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#7828]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_content_protection@atomic: - shard-tglu: NOTRUN -> [SKIP][134] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-4/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#7116] / [i915#9424]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][136] ([i915#7173]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-11/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#3116]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@lic-type-0: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#9424]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-6/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#7118] / [i915#9424]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-6/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#3359]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][141] ([i915#3359]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#3359]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x512.html - shard-dg1: NOTRUN -> [SKIP][143] ([i915#3359]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#3359]) +2 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-9/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#9809]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#4213]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-rkl: NOTRUN -> [SKIP][147] ([i915#4103]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: - shard-snb: [PASS][148] -> [SKIP][149] [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-snb2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#9067]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-rkl: NOTRUN -> [SKIP][151] ([i915#9067]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#9723]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#9833]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg1: NOTRUN -> [SKIP][154] ([i915#3555]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#1257]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-3/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#8812]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#3840] / [i915#9688]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp.html - shard-dg1: NOTRUN -> [SKIP][158] ([i915#3840]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#3840] / [i915#9053]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@chamelium: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#4854]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][161] ([i915#658]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-4/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#3637] / [i915#3966]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-4/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-nonexisting-fb: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#3637]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-4/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][164] +45 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@kms_flip@2x-plain-flip.html - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3637]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#9934]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#8381]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1: - shard-rkl: [PASS][168] -> [FAIL][169] ([i915#2122]) +1 other test fail [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-rkl-4/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1.html [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-5/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@d-hdmi-a3: - shard-dg2: NOTRUN -> [FAIL][170] ([i915#2122]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-6/igt@kms_flip@plain-flip-fb-recreate-interruptible@d-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][171] ([i915#2587] / [i915#2672]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#2672]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#2672] / [i915#3555]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#2587] / [i915#2672]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#2672]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#2672]) +3 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite: - shard-dg2: [PASS][177] -> [FAIL][178] ([i915#6880]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#5354]) +24 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#8708]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#1825]) +35 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-snb: NOTRUN -> [SKIP][182] +6 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#3458]) +4 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#3458]) +11 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#8708]) +6 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#8708]) +13 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#1825]) +4 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-dg1: NOTRUN -> [SKIP][188] +9 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#3023]) +24 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#10070]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-7/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][191] +30 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_hdr@static-swap: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#8228]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-9/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#8228]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-7/igt@kms_hdr@static-toggle.html - shard-rkl: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#8228]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@kms_hdr@static-toggle.html * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][195] ([i915#10647]) +1 other test fail [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-glk5/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#6953]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#9423]) +7 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#9423]) +7 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-13/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#9423]) +3 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#5176] / [i915#9423]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#5235]) +5 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][202] ([i915#5235]) +3 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#5235] / [i915#9423]) +15 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#5235]) +3 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-17/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#9685]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@kms_pm_dc@dc3co-vpb-simulation.html - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#9292]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [PASS][207] -> [SKIP][208] ([i915#9519]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-dg2-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#9519]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu: NOTRUN -> [SKIP][210] ([i915#9519]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][211] -> [SKIP][212] ([i915#9519]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu: NOTRUN -> [SKIP][213] ([i915#6524]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-9/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg1: NOTRUN -> [SKIP][214] ([i915#6524]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@kms_prime@basic-modeset-hybrid.html - shard-dg2: NOTRUN -> [SKIP][215] ([i915#6524] / [i915#6805]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-11/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-overlay-primary-update-sf-dmg-area@b-pipe-psr2-edp-1: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#9808]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@kms_psr2_sf@fbc-overlay-primary-update-sf-dmg-area@b-pipe-psr2-edp-1.html * igt@kms_psr@fbc-pr-cursor-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#1072] / [i915#9732]) +7 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@kms_psr@fbc-pr-cursor-plane-onoff.html * igt@kms_psr@fbc-psr-cursor-plane-move: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#1072] / [i915#9732]) +11 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-7/igt@kms_psr@fbc-psr-cursor-plane-move.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#1072] / [i915#9732]) +19 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@pr-basic: - shard-tglu: NOTRUN -> [SKIP][220] ([i915#9732]) +4 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-4/igt@kms_psr@pr-basic.html * igt@kms_psr@pr-no-drrs: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#9688]) +2 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@kms_psr@pr-no-drrs.html * igt@kms_psr@psr2-primary-page-flip: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#1072] / [i915#9673] / [i915#9732]) +5 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-11/igt@kms_psr@psr2-primary-page-flip.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#4235] / [i915#5190]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-11/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-dg1: NOTRUN -> [SKIP][224] ([i915#5289]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/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][225] ([i915#4235]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-none: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#3555]) +4 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-7/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#3555]) +4 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@kms_setmode@invalid-clone-exclusive-crtc.html - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#8809] / [i915#8823]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][229] ([IGT#2]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-6/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#8623]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][231] ([i915#9196]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: - shard-tglu: [PASS][232] -> [FAIL][233] ([i915#9196]) +1 other test fail [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html * igt@kms_vrr@flip-basic-fastset: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#9906]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-suspend: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#3555] / [i915#8808]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#9906]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-6/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-tglu: NOTRUN -> [SKIP][237] ([i915#9906]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-4/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#2437] / [i915#9412]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-11/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-dg1: NOTRUN -> [SKIP][239] ([i915#2437] / [i915#9412]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#2436]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-3/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#2435]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-5/igt@perf@per-context-mode-unprivileged.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#2433]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-5/igt@perf@unprivileged-single-ctx-counters.html * igt@prime_vgem@fence-flip-hang: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#3708]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@prime_vgem@fence-flip-hang.html - shard-rkl: NOTRUN -> [SKIP][244] ([i915#3708]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-2/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#3708]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-6/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#9917]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-7/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#4818]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-7/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_submit_cl@bad-in-sync: - shard-dg1: NOTRUN -> [SKIP][248] ([i915#2575]) +2 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@v3d/v3d_submit_cl@bad-in-sync.html * igt@v3d/v3d_submit_cl@multisync-out-syncs: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#2575]) +9 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-7/igt@v3d/v3d_submit_cl@multisync-out-syncs.html * igt@v3d/v3d_submit_csd@bad-multisync-in-sync: - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#2575]) +2 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@v3d/v3d_submit_csd@bad-multisync-in-sync.html * igt@vc4/vc4_dmabuf_poll@poll-write-waits-until-write-done: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#7711]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-mtlp-8/igt@vc4/vc4_dmabuf_poll@poll-write-waits-until-write-done.html * igt@vc4/vc4_label_bo@set-bad-handle: - shard-tglu: NOTRUN -> [SKIP][252] ([i915#2575]) +5 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-4/igt@vc4/vc4_label_bo@set-bad-handle.html * igt@vc4/vc4_mmap@mmap-bo: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#7711]) +5 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-6/igt@vc4/vc4_mmap@mmap-bo.html * igt@vc4/vc4_tiling@get-bad-flags: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#7711]) +7 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-3/igt@vc4/vc4_tiling@get-bad-flags.html * igt@vc4/vc4_tiling@get-bad-handle: - shard-dg1: NOTRUN -> [SKIP][255] ([i915#7711]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-16/igt@vc4/vc4_tiling@get-bad-handle.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [FAIL][256] ([i915#7742]) -> [PASS][257] [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-rkl-3/igt@drm_fdinfo@most-busy-check-all@rcs0.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-3/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [FAIL][258] ([i915#6268]) -> [PASS][259] [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-tglu: [FAIL][260] ([i915#2842]) -> [PASS][261] [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-tglu-3/igt@gem_exec_fair@basic-pace-solo@rcs0.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-9/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [FAIL][262] ([i915#2842]) -> [PASS][263] +1 other test pass [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-rkl-3/igt@gem_exec_fair@basic-pace@vecs0.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-5/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_lmem_swapping@heavy-verify-multi@lmem0: - shard-dg2: [FAIL][264] ([i915#10378]) -> [PASS][265] [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-dg2-4/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-8/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [TIMEOUT][266] ([i915#5493]) -> [PASS][267] [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_pm_rps@reset: - shard-snb: [INCOMPLETE][268] ([i915#7790]) -> [PASS][269] [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-snb5/igt@i915_pm_rps@reset.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-snb6/igt@i915_pm_rps@reset.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-1: - shard-tglu: [FAIL][270] ([i915#10991]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-tglu-4/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-1.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-4/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-1.html * igt@kms_big_fb@linear-8bpp-rotate-0: - shard-tglu: [INCOMPLETE][272] -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-tglu-4/igt@kms_big_fb@linear-8bpp-rotate-0.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-4/igt@kms_big_fb@linear-8bpp-rotate-0.html * igt@kms_dp_aux_dev: - shard-dg2: [SKIP][274] ([i915#1257]) -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-dg2-6/igt@kms_dp_aux_dev.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-11/igt@kms_dp_aux_dev.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-vga1-hdmi-a1: - shard-snb: [FAIL][276] ([i915#2122]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-vga1-hdmi-a1.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-snb2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-vga1-hdmi-a1.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [SKIP][278] ([i915#4281]) -> [PASS][279] [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-3/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: [SKIP][280] ([i915#9519]) -> [PASS][281] +1 other test pass [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [SKIP][282] ([i915#9519]) -> [PASS][283] [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_vblank@wait-forked-busy-hang@pipe-a-hdmi-a-4: - shard-dg1: [INCOMPLETE][284] -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-dg1-14/igt@kms_vblank@wait-forked-busy-hang@pipe-a-hdmi-a-4.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-18/igt@kms_vblank@wait-forked-busy-hang@pipe-a-hdmi-a-4.html * igt@perf_pmu@busy-idle@bcs0: - shard-glk: [INCOMPLETE][286] ([i915#9853]) -> [PASS][287] [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-glk5/igt@perf_pmu@busy-idle@bcs0.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-glk8/igt@perf_pmu@busy-idle@bcs0.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [INCOMPLETE][288] ([i915#9408]) -> [ABORT][289] ([i915#11164]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-dg1-16/igt@device_reset@unbind-reset-rebind.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-tglu: [FAIL][290] ([i915#2842]) -> [FAIL][291] ([i915#2876]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-tglu-10/igt@gem_exec_fair@basic-pace@rcs0.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-tglu-6/igt@gem_exec_fair@basic-pace@rcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [INCOMPLETE][292] ([i915#1982] / [i915#9820] / [i915#9849]) -> [INCOMPLETE][293] ([i915#1982] / [i915#9849]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg1-15/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt: - shard-dg2: [SKIP][294] ([i915#10433] / [i915#3458]) -> [SKIP][295] ([i915#3458]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_psr@fbc-pr-primary-render: - shard-dg2: [SKIP][296] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][297] ([i915#1072] / [i915#9732]) +5 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-dg2-11/igt@kms_psr@fbc-pr-primary-render.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-7/igt@kms_psr@fbc-pr-primary-render.html * igt@kms_psr@fbc-psr-primary-blt: - shard-dg2: [SKIP][298] ([i915#1072] / [i915#9732]) -> [SKIP][299] ([i915#1072] / [i915#9673] / [i915#9732]) +10 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-dg2-6/igt@kms_psr@fbc-psr-primary-blt.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-11/igt@kms_psr@fbc-psr-primary-blt.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][300] ([i915#9100]) -> [FAIL][301] ([i915#7484]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14837/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/shard-dg2-6/igt@perf@non-zero-reason@0-rcs0.html [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030 [i915#10070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10070 [i915#10278]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10278 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10513]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10513 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10991 [i915#11164]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11164 [i915#11165]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11165 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#2876]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2876 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936 [i915#3966]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3966 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215 [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281 [i915#4473]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4473 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#5176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6227 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6268]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6268 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276 [i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443 [i915#7484]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7484 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742 [i915#7790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7790 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100 [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196 [i915#9292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9292 [i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9408]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9408 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9606]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9606 [i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9849 [i915#9853]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9853 [i915#9857]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9857 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * Linux: CI_DRM_14837 -> Patchwork_134150v1 CI-20190529: 20190529 CI_DRM_14837: a86e8e1b93dba695cc2f1820a8b4de6a161487e7 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7872: baba9988c34c55977332044f3521cfbba80ca630 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_134150v1: a86e8e1b93dba695cc2f1820a8b4de6a161487e7 @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134150v1/index.html [-- Attachment #2: Type: text/html, Size: 101984 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 1/3] drm/i915/cdclk: Plumb the full atomic state deeper 2024-05-28 18:49 [PATCH 1/3] drm/i915/cdclk: Plumb the full atomic state deeper Ville Syrjala ` (4 preceding siblings ...) 2024-05-29 13:15 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2024-05-30 12:54 ` Jani Nikula 5 siblings, 0 replies; 10+ messages in thread From: Jani Nikula @ 2024-05-30 12:54 UTC (permalink / raw) To: Ville Syrjala, intel-gfx On Tue, 28 May 2024, Ville Syrjala <ville.syrjala@linux.intel.com> wrote: > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > Various parts of the cdclk code need access the full atomic > state. Currently it's being dug out via the cdclk_state->base.state > pointer, which is not great as that pointer isn't always valid. > Instead plumb the full atomic state from the top so that it's > clear that it is in fact valid. > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > --- > drivers/gpu/drm/i915/display/intel_cdclk.c | 60 +++++++++++++--------- > 1 file changed, 35 insertions(+), 25 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.c b/drivers/gpu/drm/i915/display/intel_cdclk.c > index b78154c82a71..7ef8dcb1601a 100644 > --- a/drivers/gpu/drm/i915/display/intel_cdclk.c > +++ b/drivers/gpu/drm/i915/display/intel_cdclk.c > @@ -113,7 +113,7 @@ struct intel_cdclk_funcs { > void (*set_cdclk)(struct drm_i915_private *i915, > const struct intel_cdclk_config *cdclk_config, > enum pipe pipe); > - int (*modeset_calc_cdclk)(struct intel_cdclk_state *state); > + int (*modeset_calc_cdclk)(struct intel_atomic_state *state); > u8 (*calc_voltage_level)(int cdclk); > }; > > @@ -130,10 +130,11 @@ static void intel_cdclk_set_cdclk(struct drm_i915_private *dev_priv, > dev_priv->display.funcs.cdclk->set_cdclk(dev_priv, cdclk_config, pipe); > } > > -static int intel_cdclk_modeset_calc_cdclk(struct drm_i915_private *dev_priv, > - struct intel_cdclk_state *cdclk_config) > +static int intel_cdclk_modeset_calc_cdclk(struct intel_atomic_state *state) > { > - return dev_priv->display.funcs.cdclk->modeset_calc_cdclk(cdclk_config); > + struct drm_i915_private *dev_priv = to_i915(state->base.dev); > + > + return dev_priv->display.funcs.cdclk->modeset_calc_cdclk(state); The dev_priv is an eyesore. Could already start doing: const struct intel_display *display = to_intel_display(state->base.dev); return display->funcs.cdclk->modeset_calc_cdclk(state); And if you wanted to, could also make to_intel_display() handle struct intel_atomic_state so it would only need to_intel_display(state). Regardless, Reviewed-by: Jani Nikula <jani.nikula@intel.com> > } > > static u8 intel_cdclk_calc_voltage_level(struct drm_i915_private *dev_priv, > @@ -2834,10 +2835,11 @@ int intel_crtc_compute_min_cdclk(const struct intel_crtc_state *crtc_state) > return min_cdclk; > } > > -static int intel_compute_min_cdclk(struct intel_cdclk_state *cdclk_state) > +static int intel_compute_min_cdclk(struct intel_atomic_state *state) > { > - struct intel_atomic_state *state = cdclk_state->base.state; > struct drm_i915_private *dev_priv = to_i915(state->base.dev); > + struct intel_cdclk_state *cdclk_state = > + intel_atomic_get_new_cdclk_state(state); > const struct intel_bw_state *bw_state; > struct intel_crtc *crtc; > struct intel_crtc_state *crtc_state; > @@ -2916,10 +2918,11 @@ static int intel_compute_min_cdclk(struct intel_cdclk_state *cdclk_state) > * future platforms this code will need to be > * adjusted. > */ > -static int bxt_compute_min_voltage_level(struct intel_cdclk_state *cdclk_state) > +static int bxt_compute_min_voltage_level(struct intel_atomic_state *state) > { > - struct intel_atomic_state *state = cdclk_state->base.state; > struct drm_i915_private *dev_priv = to_i915(state->base.dev); > + struct intel_cdclk_state *cdclk_state = > + intel_atomic_get_new_cdclk_state(state); > struct intel_crtc *crtc; > struct intel_crtc_state *crtc_state; > u8 min_voltage_level; > @@ -2952,13 +2955,14 @@ static int bxt_compute_min_voltage_level(struct intel_cdclk_state *cdclk_state) > return min_voltage_level; > } > > -static int vlv_modeset_calc_cdclk(struct intel_cdclk_state *cdclk_state) > +static int vlv_modeset_calc_cdclk(struct intel_atomic_state *state) > { > - struct intel_atomic_state *state = cdclk_state->base.state; > struct drm_i915_private *dev_priv = to_i915(state->base.dev); > + struct intel_cdclk_state *cdclk_state = > + intel_atomic_get_new_cdclk_state(state); > int min_cdclk, cdclk; > > - min_cdclk = intel_compute_min_cdclk(cdclk_state); > + min_cdclk = intel_compute_min_cdclk(state); > if (min_cdclk < 0) > return min_cdclk; > > @@ -2981,11 +2985,13 @@ static int vlv_modeset_calc_cdclk(struct intel_cdclk_state *cdclk_state) > return 0; > } > > -static int bdw_modeset_calc_cdclk(struct intel_cdclk_state *cdclk_state) > +static int bdw_modeset_calc_cdclk(struct intel_atomic_state *state) > { > + struct intel_cdclk_state *cdclk_state = > + intel_atomic_get_new_cdclk_state(state); > int min_cdclk, cdclk; > > - min_cdclk = intel_compute_min_cdclk(cdclk_state); > + min_cdclk = intel_compute_min_cdclk(state); > if (min_cdclk < 0) > return min_cdclk; > > @@ -3008,10 +3014,11 @@ static int bdw_modeset_calc_cdclk(struct intel_cdclk_state *cdclk_state) > return 0; > } > > -static int skl_dpll0_vco(struct intel_cdclk_state *cdclk_state) > +static int skl_dpll0_vco(struct intel_atomic_state *state) > { > - struct intel_atomic_state *state = cdclk_state->base.state; > struct drm_i915_private *dev_priv = to_i915(state->base.dev); > + struct intel_cdclk_state *cdclk_state = > + intel_atomic_get_new_cdclk_state(state); > struct intel_crtc *crtc; > struct intel_crtc_state *crtc_state; > int vco, i; > @@ -3045,15 +3052,17 @@ static int skl_dpll0_vco(struct intel_cdclk_state *cdclk_state) > return vco; > } > > -static int skl_modeset_calc_cdclk(struct intel_cdclk_state *cdclk_state) > +static int skl_modeset_calc_cdclk(struct intel_atomic_state *state) > { > + struct intel_cdclk_state *cdclk_state = > + intel_atomic_get_new_cdclk_state(state); > int min_cdclk, cdclk, vco; > > - min_cdclk = intel_compute_min_cdclk(cdclk_state); > + min_cdclk = intel_compute_min_cdclk(state); > if (min_cdclk < 0) > return min_cdclk; > > - vco = skl_dpll0_vco(cdclk_state); > + vco = skl_dpll0_vco(state); > > cdclk = skl_calc_cdclk(min_cdclk, vco); > > @@ -3076,17 +3085,18 @@ static int skl_modeset_calc_cdclk(struct intel_cdclk_state *cdclk_state) > return 0; > } > > -static int bxt_modeset_calc_cdclk(struct intel_cdclk_state *cdclk_state) > +static int bxt_modeset_calc_cdclk(struct intel_atomic_state *state) > { > - struct intel_atomic_state *state = cdclk_state->base.state; > struct drm_i915_private *dev_priv = to_i915(state->base.dev); > + struct intel_cdclk_state *cdclk_state = > + intel_atomic_get_new_cdclk_state(state); > int min_cdclk, min_voltage_level, cdclk, vco; > > - min_cdclk = intel_compute_min_cdclk(cdclk_state); > + min_cdclk = intel_compute_min_cdclk(state); > if (min_cdclk < 0) > return min_cdclk; > > - min_voltage_level = bxt_compute_min_voltage_level(cdclk_state); > + min_voltage_level = bxt_compute_min_voltage_level(state); > if (min_voltage_level < 0) > return min_voltage_level; > > @@ -3114,7 +3124,7 @@ static int bxt_modeset_calc_cdclk(struct intel_cdclk_state *cdclk_state) > return 0; > } > > -static int fixed_modeset_calc_cdclk(struct intel_cdclk_state *cdclk_state) > +static int fixed_modeset_calc_cdclk(struct intel_atomic_state *state) > { > int min_cdclk; > > @@ -3123,7 +3133,7 @@ static int fixed_modeset_calc_cdclk(struct intel_cdclk_state *cdclk_state) > * check that the required minimum frequency doesn't exceed > * the actual cdclk frequency. > */ > - min_cdclk = intel_compute_min_cdclk(cdclk_state); > + min_cdclk = intel_compute_min_cdclk(state); > if (min_cdclk < 0) > return min_cdclk; > > @@ -3263,7 +3273,7 @@ int intel_modeset_calc_cdclk(struct intel_atomic_state *state) > new_cdclk_state->active_pipes = > intel_calc_active_pipes(state, old_cdclk_state->active_pipes); > > - ret = intel_cdclk_modeset_calc_cdclk(dev_priv, new_cdclk_state); > + ret = intel_cdclk_modeset_calc_cdclk(state); > if (ret) > return ret; -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-05-31 7:16 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-05-28 18:49 [PATCH 1/3] drm/i915/cdclk: Plumb the full atomic state deeper Ville Syrjala 2024-05-28 18:49 ` [PATCH 2/3] drm/i915: Plumb the full atomic state into icl_check_nv12_planes() Ville Syrjala 2024-05-30 12:57 ` Jani Nikula 2024-05-31 7:16 ` Ville Syrjälä 2024-05-28 18:49 ` [PATCH 3/3] drm/i915: Plumb the full atomic state into skl_ddb_add_affected_planes() Ville Syrjala 2024-05-30 13:00 ` Jani Nikula 2024-05-28 19:25 ` ✗ Fi.CI.SPARSE: warning for series starting with [1/3] drm/i915/cdclk: Plumb the full atomic state deeper Patchwork 2024-05-28 19:33 ` ✓ Fi.CI.BAT: success " Patchwork 2024-05-29 13:15 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-05-30 12:54 ` [PATCH 1/3] " Jani Nikula
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox