* [PATCH 0/3] drm/i915/pch: small cleanups, refactors
@ 2025-02-07 10:17 Jani Nikula
2025-02-07 10:17 ` [PATCH 1/3] drm/i915/pch: Make LPT LP a dedicated PCH type Jani Nikula
` (6 more replies)
0 siblings, 7 replies; 12+ messages in thread
From: Jani Nikula @ 2025-02-07 10:17 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula
The PCH detection code is a bit problematic in terms of making it
independent of i915 core code. I don't have a solution yet, but while
looking I came up with these small improvements.
BR,
Jani.
Jani Nikula (3):
drm/i915/pch: Make LPT LP a dedicated PCH type
drm/i915/pch: Hide PCH device IDs
drm/i915/pch: Remove unused i915->pch_id
.../gpu/drm/i915/display/intel_backlight.c | 2 +-
drivers/gpu/drm/i915/i915_drv.h | 1 -
drivers/gpu/drm/i915/soc/intel_pch.c | 42 +++++++++++++----
drivers/gpu/drm/i915/soc/intel_pch.h | 45 +++----------------
drivers/gpu/drm/xe/xe_device_types.h | 1 -
5 files changed, 41 insertions(+), 50 deletions(-)
--
2.39.5
^ permalink raw reply [flat|nested] 12+ messages in thread* [PATCH 1/3] drm/i915/pch: Make LPT LP a dedicated PCH type 2025-02-07 10:17 [PATCH 0/3] drm/i915/pch: small cleanups, refactors Jani Nikula @ 2025-02-07 10:17 ` Jani Nikula 2025-02-11 18:12 ` Garg, Nemesa 2025-02-07 10:17 ` [PATCH 2/3] drm/i915/pch: Hide PCH device IDs Jani Nikula ` (5 subsequent siblings) 6 siblings, 1 reply; 12+ messages in thread From: Jani Nikula @ 2025-02-07 10:17 UTC (permalink / raw) To: intel-gfx, intel-xe; +Cc: jani.nikula Add PCH type PCH_LPT_LP and rename PCH_LPT to PCH_LPT_H for consistency. Keep the existing HAS_PCH_LPT*() macros, but express them in terms of the PCH types instead of looking at the device IDs directly. This makes the PCH checks independent of the PCH device IDs. Signed-off-by: Jani Nikula <jani.nikula@intel.com> --- drivers/gpu/drm/i915/display/intel_backlight.c | 2 +- drivers/gpu/drm/i915/soc/intel_pch.c | 8 ++++---- drivers/gpu/drm/i915/soc/intel_pch.h | 14 ++++++-------- 3 files changed, 11 insertions(+), 13 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_backlight.c b/drivers/gpu/drm/i915/display/intel_backlight.c index 477b21af71a4..178dc6c8de80 100644 --- a/drivers/gpu/drm/i915/display/intel_backlight.c +++ b/drivers/gpu/drm/i915/display/intel_backlight.c @@ -1829,7 +1829,7 @@ void intel_backlight_init_funcs(struct intel_panel *panel) panel->backlight.pwm_funcs = &bxt_pwm_funcs; } else if (INTEL_PCH_TYPE(i915) >= PCH_CNP) { panel->backlight.pwm_funcs = &cnp_pwm_funcs; - } else if (INTEL_PCH_TYPE(i915) >= PCH_LPT) { + } else if (INTEL_PCH_TYPE(i915) >= PCH_LPT_H) { if (HAS_PCH_LPT(i915)) panel->backlight.pwm_funcs = &lpt_pwm_funcs; else diff --git a/drivers/gpu/drm/i915/soc/intel_pch.c b/drivers/gpu/drm/i915/soc/intel_pch.c index 9f7c9dbc178e..0370ccb6943c 100644 --- a/drivers/gpu/drm/i915/soc/intel_pch.c +++ b/drivers/gpu/drm/i915/soc/intel_pch.c @@ -33,14 +33,14 @@ intel_pch_type(const struct drm_i915_private *dev_priv, unsigned short id) !IS_HASWELL(dev_priv) && !IS_BROADWELL(dev_priv)); drm_WARN_ON(&dev_priv->drm, IS_HASWELL_ULT(dev_priv) || IS_BROADWELL_ULT(dev_priv)); - return PCH_LPT; + return PCH_LPT_H; case INTEL_PCH_LPT_LP_DEVICE_ID_TYPE: drm_dbg_kms(&dev_priv->drm, "Found LynxPoint LP PCH\n"); drm_WARN_ON(&dev_priv->drm, !IS_HASWELL(dev_priv) && !IS_BROADWELL(dev_priv)); drm_WARN_ON(&dev_priv->drm, !IS_HASWELL_ULT(dev_priv) && !IS_BROADWELL_ULT(dev_priv)); - return PCH_LPT; + return PCH_LPT_LP; case INTEL_PCH_WPT_DEVICE_ID_TYPE: drm_dbg_kms(&dev_priv->drm, "Found WildcatPoint PCH\n"); drm_WARN_ON(&dev_priv->drm, @@ -48,7 +48,7 @@ intel_pch_type(const struct drm_i915_private *dev_priv, unsigned short id) drm_WARN_ON(&dev_priv->drm, IS_HASWELL_ULT(dev_priv) || IS_BROADWELL_ULT(dev_priv)); /* WPT is LPT compatible */ - return PCH_LPT; + return PCH_LPT_H; case INTEL_PCH_WPT_LP_DEVICE_ID_TYPE: drm_dbg_kms(&dev_priv->drm, "Found WildcatPoint LP PCH\n"); drm_WARN_ON(&dev_priv->drm, @@ -56,7 +56,7 @@ intel_pch_type(const struct drm_i915_private *dev_priv, unsigned short id) drm_WARN_ON(&dev_priv->drm, !IS_HASWELL_ULT(dev_priv) && !IS_BROADWELL_ULT(dev_priv)); /* WPT is LPT compatible */ - return PCH_LPT; + return PCH_LPT_LP; case INTEL_PCH_SPT_DEVICE_ID_TYPE: drm_dbg_kms(&dev_priv->drm, "Found SunrisePoint PCH\n"); drm_WARN_ON(&dev_priv->drm, diff --git a/drivers/gpu/drm/i915/soc/intel_pch.h b/drivers/gpu/drm/i915/soc/intel_pch.h index 89e89ede265d..bc926df14c45 100644 --- a/drivers/gpu/drm/i915/soc/intel_pch.h +++ b/drivers/gpu/drm/i915/soc/intel_pch.h @@ -19,7 +19,8 @@ enum intel_pch { PCH_NONE = 0, /* No PCH present */ PCH_IBX, /* Ibexpeak PCH */ PCH_CPT, /* Cougarpoint/Pantherpoint PCH */ - PCH_LPT, /* Lynxpoint/Wildcatpoint PCH */ + PCH_LPT_H, /* Lynxpoint/Wildcatpoint H PCH */ + PCH_LPT_LP, /* Lynxpoint/Wildcatpoint LP PCH */ PCH_SPT, /* Sunrisepoint/Kaby Lake PCH */ PCH_CNP, /* Cannon/Comet Lake PCH */ PCH_ICP, /* Ice Lake/Jasper Lake PCH */ @@ -72,13 +73,10 @@ enum intel_pch { #define HAS_PCH_ICP(dev_priv) (INTEL_PCH_TYPE(dev_priv) == PCH_ICP) #define HAS_PCH_CNP(dev_priv) (INTEL_PCH_TYPE(dev_priv) == PCH_CNP) #define HAS_PCH_SPT(dev_priv) (INTEL_PCH_TYPE(dev_priv) == PCH_SPT) -#define HAS_PCH_LPT(dev_priv) (INTEL_PCH_TYPE(dev_priv) == PCH_LPT) -#define HAS_PCH_LPT_LP(dev_priv) \ - (INTEL_PCH_ID(dev_priv) == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE || \ - INTEL_PCH_ID(dev_priv) == INTEL_PCH_WPT_LP_DEVICE_ID_TYPE) -#define HAS_PCH_LPT_H(dev_priv) \ - (INTEL_PCH_ID(dev_priv) == INTEL_PCH_LPT_DEVICE_ID_TYPE || \ - INTEL_PCH_ID(dev_priv) == INTEL_PCH_WPT_DEVICE_ID_TYPE) +#define HAS_PCH_LPT_H(dev_priv) (INTEL_PCH_TYPE(dev_priv) == PCH_LPT_H) +#define HAS_PCH_LPT_LP(dev_priv) (INTEL_PCH_TYPE(dev_priv) == PCH_LPT_LP) +#define HAS_PCH_LPT(dev_priv) (INTEL_PCH_TYPE(dev_priv) == PCH_LPT_H || \ + INTEL_PCH_TYPE(dev_priv) == PCH_LPT_LP) #define HAS_PCH_CPT(dev_priv) (INTEL_PCH_TYPE(dev_priv) == PCH_CPT) #define HAS_PCH_IBX(dev_priv) (INTEL_PCH_TYPE(dev_priv) == PCH_IBX) #define HAS_PCH_NOP(dev_priv) (INTEL_PCH_TYPE(dev_priv) == PCH_NOP) -- 2.39.5 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* RE: [PATCH 1/3] drm/i915/pch: Make LPT LP a dedicated PCH type 2025-02-07 10:17 ` [PATCH 1/3] drm/i915/pch: Make LPT LP a dedicated PCH type Jani Nikula @ 2025-02-11 18:12 ` Garg, Nemesa 2025-02-12 11:18 ` Jani Nikula 0 siblings, 1 reply; 12+ messages in thread From: Garg, Nemesa @ 2025-02-11 18:12 UTC (permalink / raw) To: Nikula, Jani, intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org Cc: Nikula, Jani > -----Original Message----- > From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of Jani > Nikula > Sent: Friday, February 7, 2025 3:48 PM > To: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org > Cc: Nikula, Jani <jani.nikula@intel.com> > Subject: [PATCH 1/3] drm/i915/pch: Make LPT LP a dedicated PCH type > > Add PCH type PCH_LPT_LP and rename PCH_LPT to PCH_LPT_H for > consistency. Keep the existing HAS_PCH_LPT*() macros, but express them in > terms of the PCH types instead of looking at the device IDs directly. This > makes the PCH checks independent of the PCH device IDs. > > Signed-off-by: Jani Nikula <jani.nikula@intel.com> LGTM, Reviewed-by: Nemesa Garg <nemesa.garg@intel.com> > --- > drivers/gpu/drm/i915/display/intel_backlight.c | 2 +- > drivers/gpu/drm/i915/soc/intel_pch.c | 8 ++++---- > drivers/gpu/drm/i915/soc/intel_pch.h | 14 ++++++-------- > 3 files changed, 11 insertions(+), 13 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_backlight.c > b/drivers/gpu/drm/i915/display/intel_backlight.c > index 477b21af71a4..178dc6c8de80 100644 > --- a/drivers/gpu/drm/i915/display/intel_backlight.c > +++ b/drivers/gpu/drm/i915/display/intel_backlight.c > @@ -1829,7 +1829,7 @@ void intel_backlight_init_funcs(struct intel_panel > *panel) > panel->backlight.pwm_funcs = &bxt_pwm_funcs; > } else if (INTEL_PCH_TYPE(i915) >= PCH_CNP) { > panel->backlight.pwm_funcs = &cnp_pwm_funcs; > - } else if (INTEL_PCH_TYPE(i915) >= PCH_LPT) { > + } else if (INTEL_PCH_TYPE(i915) >= PCH_LPT_H) { > if (HAS_PCH_LPT(i915)) > panel->backlight.pwm_funcs = &lpt_pwm_funcs; > else > diff --git a/drivers/gpu/drm/i915/soc/intel_pch.c > b/drivers/gpu/drm/i915/soc/intel_pch.c > index 9f7c9dbc178e..0370ccb6943c 100644 > --- a/drivers/gpu/drm/i915/soc/intel_pch.c > +++ b/drivers/gpu/drm/i915/soc/intel_pch.c > @@ -33,14 +33,14 @@ intel_pch_type(const struct drm_i915_private > *dev_priv, unsigned short id) > !IS_HASWELL(dev_priv) && > !IS_BROADWELL(dev_priv)); > drm_WARN_ON(&dev_priv->drm, > IS_HASWELL_ULT(dev_priv) || > IS_BROADWELL_ULT(dev_priv)); > - return PCH_LPT; > + return PCH_LPT_H; > case INTEL_PCH_LPT_LP_DEVICE_ID_TYPE: > drm_dbg_kms(&dev_priv->drm, "Found LynxPoint LP > PCH\n"); > drm_WARN_ON(&dev_priv->drm, > !IS_HASWELL(dev_priv) && > !IS_BROADWELL(dev_priv)); > drm_WARN_ON(&dev_priv->drm, > !IS_HASWELL_ULT(dev_priv) && > !IS_BROADWELL_ULT(dev_priv)); > - return PCH_LPT; > + return PCH_LPT_LP; > case INTEL_PCH_WPT_DEVICE_ID_TYPE: > drm_dbg_kms(&dev_priv->drm, "Found WildcatPoint > PCH\n"); > drm_WARN_ON(&dev_priv->drm, > @@ -48,7 +48,7 @@ intel_pch_type(const struct drm_i915_private *dev_priv, > unsigned short id) > drm_WARN_ON(&dev_priv->drm, > IS_HASWELL_ULT(dev_priv) || > IS_BROADWELL_ULT(dev_priv)); > /* WPT is LPT compatible */ > - return PCH_LPT; > + return PCH_LPT_H; > case INTEL_PCH_WPT_LP_DEVICE_ID_TYPE: > drm_dbg_kms(&dev_priv->drm, "Found WildcatPoint LP > PCH\n"); > drm_WARN_ON(&dev_priv->drm, > @@ -56,7 +56,7 @@ intel_pch_type(const struct drm_i915_private *dev_priv, > unsigned short id) > drm_WARN_ON(&dev_priv->drm, > !IS_HASWELL_ULT(dev_priv) && > !IS_BROADWELL_ULT(dev_priv)); > /* WPT is LPT compatible */ > - return PCH_LPT; > + return PCH_LPT_LP; > case INTEL_PCH_SPT_DEVICE_ID_TYPE: > drm_dbg_kms(&dev_priv->drm, "Found SunrisePoint > PCH\n"); > drm_WARN_ON(&dev_priv->drm, > diff --git a/drivers/gpu/drm/i915/soc/intel_pch.h > b/drivers/gpu/drm/i915/soc/intel_pch.h > index 89e89ede265d..bc926df14c45 100644 > --- a/drivers/gpu/drm/i915/soc/intel_pch.h > +++ b/drivers/gpu/drm/i915/soc/intel_pch.h > @@ -19,7 +19,8 @@ enum intel_pch { > PCH_NONE = 0, /* No PCH present */ > PCH_IBX, /* Ibexpeak PCH */ > PCH_CPT, /* Cougarpoint/Pantherpoint PCH */ > - PCH_LPT, /* Lynxpoint/Wildcatpoint PCH */ > + PCH_LPT_H, /* Lynxpoint/Wildcatpoint H PCH */ > + PCH_LPT_LP, /* Lynxpoint/Wildcatpoint LP PCH */ > PCH_SPT, /* Sunrisepoint/Kaby Lake PCH */ > PCH_CNP, /* Cannon/Comet Lake PCH */ > PCH_ICP, /* Ice Lake/Jasper Lake PCH */ > @@ -72,13 +73,10 @@ enum intel_pch { > #define HAS_PCH_ICP(dev_priv) > (INTEL_PCH_TYPE(dev_priv) == PCH_ICP) > #define HAS_PCH_CNP(dev_priv) > (INTEL_PCH_TYPE(dev_priv) == PCH_CNP) > #define HAS_PCH_SPT(dev_priv) > (INTEL_PCH_TYPE(dev_priv) == PCH_SPT) > -#define HAS_PCH_LPT(dev_priv) > (INTEL_PCH_TYPE(dev_priv) == PCH_LPT) > -#define HAS_PCH_LPT_LP(dev_priv) \ > - (INTEL_PCH_ID(dev_priv) == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE || > \ > - INTEL_PCH_ID(dev_priv) == INTEL_PCH_WPT_LP_DEVICE_ID_TYPE) > -#define HAS_PCH_LPT_H(dev_priv) \ > - (INTEL_PCH_ID(dev_priv) == INTEL_PCH_LPT_DEVICE_ID_TYPE || \ > - INTEL_PCH_ID(dev_priv) == INTEL_PCH_WPT_DEVICE_ID_TYPE) > +#define HAS_PCH_LPT_H(dev_priv) > (INTEL_PCH_TYPE(dev_priv) == PCH_LPT_H) > +#define HAS_PCH_LPT_LP(dev_priv) (INTEL_PCH_TYPE(dev_priv) > == PCH_LPT_LP) > +#define HAS_PCH_LPT(dev_priv) > (INTEL_PCH_TYPE(dev_priv) == PCH_LPT_H || \ > + INTEL_PCH_TYPE(dev_priv) > == PCH_LPT_LP) > #define HAS_PCH_CPT(dev_priv) > (INTEL_PCH_TYPE(dev_priv) == PCH_CPT) > #define HAS_PCH_IBX(dev_priv) > (INTEL_PCH_TYPE(dev_priv) == PCH_IBX) > #define HAS_PCH_NOP(dev_priv) > (INTEL_PCH_TYPE(dev_priv) == PCH_NOP) > -- > 2.39.5 ^ permalink raw reply [flat|nested] 12+ messages in thread
* RE: [PATCH 1/3] drm/i915/pch: Make LPT LP a dedicated PCH type 2025-02-11 18:12 ` Garg, Nemesa @ 2025-02-12 11:18 ` Jani Nikula 0 siblings, 0 replies; 12+ messages in thread From: Jani Nikula @ 2025-02-12 11:18 UTC (permalink / raw) To: Garg, Nemesa, intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org On Tue, 11 Feb 2025, "Garg, Nemesa" <nemesa.garg@intel.com> wrote: >> -----Original Message----- >> From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of Jani >> Nikula >> Sent: Friday, February 7, 2025 3:48 PM >> To: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org >> Cc: Nikula, Jani <jani.nikula@intel.com> >> Subject: [PATCH 1/3] drm/i915/pch: Make LPT LP a dedicated PCH type >> >> Add PCH type PCH_LPT_LP and rename PCH_LPT to PCH_LPT_H for >> consistency. Keep the existing HAS_PCH_LPT*() macros, but express them in >> terms of the PCH types instead of looking at the device IDs directly. This >> makes the PCH checks independent of the PCH device IDs. >> >> Signed-off-by: Jani Nikula <jani.nikula@intel.com> > > LGTM, > Reviewed-by: Nemesa Garg <nemesa.garg@intel.com> Thanks for the review, series pushed to din. BR, Jani. >> --- >> drivers/gpu/drm/i915/display/intel_backlight.c | 2 +- >> drivers/gpu/drm/i915/soc/intel_pch.c | 8 ++++---- >> drivers/gpu/drm/i915/soc/intel_pch.h | 14 ++++++-------- >> 3 files changed, 11 insertions(+), 13 deletions(-) >> >> diff --git a/drivers/gpu/drm/i915/display/intel_backlight.c >> b/drivers/gpu/drm/i915/display/intel_backlight.c >> index 477b21af71a4..178dc6c8de80 100644 >> --- a/drivers/gpu/drm/i915/display/intel_backlight.c >> +++ b/drivers/gpu/drm/i915/display/intel_backlight.c >> @@ -1829,7 +1829,7 @@ void intel_backlight_init_funcs(struct intel_panel >> *panel) >> panel->backlight.pwm_funcs = &bxt_pwm_funcs; >> } else if (INTEL_PCH_TYPE(i915) >= PCH_CNP) { >> panel->backlight.pwm_funcs = &cnp_pwm_funcs; >> - } else if (INTEL_PCH_TYPE(i915) >= PCH_LPT) { >> + } else if (INTEL_PCH_TYPE(i915) >= PCH_LPT_H) { >> if (HAS_PCH_LPT(i915)) >> panel->backlight.pwm_funcs = &lpt_pwm_funcs; >> else >> diff --git a/drivers/gpu/drm/i915/soc/intel_pch.c >> b/drivers/gpu/drm/i915/soc/intel_pch.c >> index 9f7c9dbc178e..0370ccb6943c 100644 >> --- a/drivers/gpu/drm/i915/soc/intel_pch.c >> +++ b/drivers/gpu/drm/i915/soc/intel_pch.c >> @@ -33,14 +33,14 @@ intel_pch_type(const struct drm_i915_private >> *dev_priv, unsigned short id) >> !IS_HASWELL(dev_priv) && >> !IS_BROADWELL(dev_priv)); >> drm_WARN_ON(&dev_priv->drm, >> IS_HASWELL_ULT(dev_priv) || >> IS_BROADWELL_ULT(dev_priv)); >> - return PCH_LPT; >> + return PCH_LPT_H; >> case INTEL_PCH_LPT_LP_DEVICE_ID_TYPE: >> drm_dbg_kms(&dev_priv->drm, "Found LynxPoint LP >> PCH\n"); >> drm_WARN_ON(&dev_priv->drm, >> !IS_HASWELL(dev_priv) && >> !IS_BROADWELL(dev_priv)); >> drm_WARN_ON(&dev_priv->drm, >> !IS_HASWELL_ULT(dev_priv) && >> !IS_BROADWELL_ULT(dev_priv)); >> - return PCH_LPT; >> + return PCH_LPT_LP; >> case INTEL_PCH_WPT_DEVICE_ID_TYPE: >> drm_dbg_kms(&dev_priv->drm, "Found WildcatPoint >> PCH\n"); >> drm_WARN_ON(&dev_priv->drm, >> @@ -48,7 +48,7 @@ intel_pch_type(const struct drm_i915_private *dev_priv, >> unsigned short id) >> drm_WARN_ON(&dev_priv->drm, >> IS_HASWELL_ULT(dev_priv) || >> IS_BROADWELL_ULT(dev_priv)); >> /* WPT is LPT compatible */ >> - return PCH_LPT; >> + return PCH_LPT_H; >> case INTEL_PCH_WPT_LP_DEVICE_ID_TYPE: >> drm_dbg_kms(&dev_priv->drm, "Found WildcatPoint LP >> PCH\n"); >> drm_WARN_ON(&dev_priv->drm, >> @@ -56,7 +56,7 @@ intel_pch_type(const struct drm_i915_private *dev_priv, >> unsigned short id) >> drm_WARN_ON(&dev_priv->drm, >> !IS_HASWELL_ULT(dev_priv) && >> !IS_BROADWELL_ULT(dev_priv)); >> /* WPT is LPT compatible */ >> - return PCH_LPT; >> + return PCH_LPT_LP; >> case INTEL_PCH_SPT_DEVICE_ID_TYPE: >> drm_dbg_kms(&dev_priv->drm, "Found SunrisePoint >> PCH\n"); >> drm_WARN_ON(&dev_priv->drm, >> diff --git a/drivers/gpu/drm/i915/soc/intel_pch.h >> b/drivers/gpu/drm/i915/soc/intel_pch.h >> index 89e89ede265d..bc926df14c45 100644 >> --- a/drivers/gpu/drm/i915/soc/intel_pch.h >> +++ b/drivers/gpu/drm/i915/soc/intel_pch.h >> @@ -19,7 +19,8 @@ enum intel_pch { >> PCH_NONE = 0, /* No PCH present */ >> PCH_IBX, /* Ibexpeak PCH */ >> PCH_CPT, /* Cougarpoint/Pantherpoint PCH */ >> - PCH_LPT, /* Lynxpoint/Wildcatpoint PCH */ >> + PCH_LPT_H, /* Lynxpoint/Wildcatpoint H PCH */ >> + PCH_LPT_LP, /* Lynxpoint/Wildcatpoint LP PCH */ >> PCH_SPT, /* Sunrisepoint/Kaby Lake PCH */ >> PCH_CNP, /* Cannon/Comet Lake PCH */ >> PCH_ICP, /* Ice Lake/Jasper Lake PCH */ >> @@ -72,13 +73,10 @@ enum intel_pch { >> #define HAS_PCH_ICP(dev_priv) >> (INTEL_PCH_TYPE(dev_priv) == PCH_ICP) >> #define HAS_PCH_CNP(dev_priv) >> (INTEL_PCH_TYPE(dev_priv) == PCH_CNP) >> #define HAS_PCH_SPT(dev_priv) >> (INTEL_PCH_TYPE(dev_priv) == PCH_SPT) >> -#define HAS_PCH_LPT(dev_priv) >> (INTEL_PCH_TYPE(dev_priv) == PCH_LPT) >> -#define HAS_PCH_LPT_LP(dev_priv) \ >> - (INTEL_PCH_ID(dev_priv) == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE || >> \ >> - INTEL_PCH_ID(dev_priv) == INTEL_PCH_WPT_LP_DEVICE_ID_TYPE) >> -#define HAS_PCH_LPT_H(dev_priv) \ >> - (INTEL_PCH_ID(dev_priv) == INTEL_PCH_LPT_DEVICE_ID_TYPE || \ >> - INTEL_PCH_ID(dev_priv) == INTEL_PCH_WPT_DEVICE_ID_TYPE) >> +#define HAS_PCH_LPT_H(dev_priv) >> (INTEL_PCH_TYPE(dev_priv) == PCH_LPT_H) >> +#define HAS_PCH_LPT_LP(dev_priv) (INTEL_PCH_TYPE(dev_priv) >> == PCH_LPT_LP) >> +#define HAS_PCH_LPT(dev_priv) >> (INTEL_PCH_TYPE(dev_priv) == PCH_LPT_H || \ >> + INTEL_PCH_TYPE(dev_priv) >> == PCH_LPT_LP) >> #define HAS_PCH_CPT(dev_priv) >> (INTEL_PCH_TYPE(dev_priv) == PCH_CPT) >> #define HAS_PCH_IBX(dev_priv) >> (INTEL_PCH_TYPE(dev_priv) == PCH_IBX) >> #define HAS_PCH_NOP(dev_priv) >> (INTEL_PCH_TYPE(dev_priv) == PCH_NOP) >> -- >> 2.39.5 > -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH 2/3] drm/i915/pch: Hide PCH device IDs 2025-02-07 10:17 [PATCH 0/3] drm/i915/pch: small cleanups, refactors Jani Nikula 2025-02-07 10:17 ` [PATCH 1/3] drm/i915/pch: Make LPT LP a dedicated PCH type Jani Nikula @ 2025-02-07 10:17 ` Jani Nikula 2025-02-11 18:03 ` Garg, Nemesa 2025-02-07 10:17 ` [PATCH 3/3] drm/i915/pch: Remove unused i915->pch_id Jani Nikula ` (4 subsequent siblings) 6 siblings, 1 reply; 12+ messages in thread From: Jani Nikula @ 2025-02-07 10:17 UTC (permalink / raw) To: intel-gfx, intel-xe; +Cc: jani.nikula Only the PCH identification code needs the PCH device IDs, as all the PCH checks are now based on PCH type. Hide the PCH device IDs inside intel_pch.c. Remove the unused INTEL_PCH_ID() macro while at it. Signed-off-by: Jani Nikula <jani.nikula@intel.com> --- drivers/gpu/drm/i915/soc/intel_pch.c | 30 +++++++++++++++++++++++++++ drivers/gpu/drm/i915/soc/intel_pch.h | 31 ---------------------------- 2 files changed, 30 insertions(+), 31 deletions(-) diff --git a/drivers/gpu/drm/i915/soc/intel_pch.c b/drivers/gpu/drm/i915/soc/intel_pch.c index 0370ccb6943c..fa03b5068a19 100644 --- a/drivers/gpu/drm/i915/soc/intel_pch.c +++ b/drivers/gpu/drm/i915/soc/intel_pch.c @@ -7,6 +7,36 @@ #include "i915_utils.h" #include "intel_pch.h" +#define INTEL_PCH_DEVICE_ID_MASK 0xff80 +#define INTEL_PCH_IBX_DEVICE_ID_TYPE 0x3b00 +#define INTEL_PCH_CPT_DEVICE_ID_TYPE 0x1c00 +#define INTEL_PCH_PPT_DEVICE_ID_TYPE 0x1e00 +#define INTEL_PCH_LPT_DEVICE_ID_TYPE 0x8c00 +#define INTEL_PCH_LPT_LP_DEVICE_ID_TYPE 0x9c00 +#define INTEL_PCH_WPT_DEVICE_ID_TYPE 0x8c80 +#define INTEL_PCH_WPT_LP_DEVICE_ID_TYPE 0x9c80 +#define INTEL_PCH_SPT_DEVICE_ID_TYPE 0xA100 +#define INTEL_PCH_SPT_LP_DEVICE_ID_TYPE 0x9D00 +#define INTEL_PCH_KBP_DEVICE_ID_TYPE 0xA280 +#define INTEL_PCH_CNP_DEVICE_ID_TYPE 0xA300 +#define INTEL_PCH_CNP_LP_DEVICE_ID_TYPE 0x9D80 +#define INTEL_PCH_CMP_DEVICE_ID_TYPE 0x0280 +#define INTEL_PCH_CMP2_DEVICE_ID_TYPE 0x0680 +#define INTEL_PCH_CMP_V_DEVICE_ID_TYPE 0xA380 +#define INTEL_PCH_ICP_DEVICE_ID_TYPE 0x3480 +#define INTEL_PCH_ICP2_DEVICE_ID_TYPE 0x3880 +#define INTEL_PCH_MCC_DEVICE_ID_TYPE 0x4B00 +#define INTEL_PCH_TGP_DEVICE_ID_TYPE 0xA080 +#define INTEL_PCH_TGP2_DEVICE_ID_TYPE 0x4380 +#define INTEL_PCH_JSP_DEVICE_ID_TYPE 0x4D80 +#define INTEL_PCH_ADP_DEVICE_ID_TYPE 0x7A80 +#define INTEL_PCH_ADP2_DEVICE_ID_TYPE 0x5180 +#define INTEL_PCH_ADP3_DEVICE_ID_TYPE 0x7A00 +#define INTEL_PCH_ADP4_DEVICE_ID_TYPE 0x5480 +#define INTEL_PCH_P2X_DEVICE_ID_TYPE 0x7100 +#define INTEL_PCH_P3X_DEVICE_ID_TYPE 0x7000 +#define INTEL_PCH_QEMU_DEVICE_ID_TYPE 0x2900 /* qemu q35 has 2918 */ + /* Map PCH device id to PCH type, or PCH_NONE if unknown. */ static enum intel_pch intel_pch_type(const struct drm_i915_private *dev_priv, unsigned short id) diff --git a/drivers/gpu/drm/i915/soc/intel_pch.h b/drivers/gpu/drm/i915/soc/intel_pch.h index bc926df14c45..635aea7a5539 100644 --- a/drivers/gpu/drm/i915/soc/intel_pch.h +++ b/drivers/gpu/drm/i915/soc/intel_pch.h @@ -34,38 +34,7 @@ enum intel_pch { PCH_LNL, }; -#define INTEL_PCH_DEVICE_ID_MASK 0xff80 -#define INTEL_PCH_IBX_DEVICE_ID_TYPE 0x3b00 -#define INTEL_PCH_CPT_DEVICE_ID_TYPE 0x1c00 -#define INTEL_PCH_PPT_DEVICE_ID_TYPE 0x1e00 -#define INTEL_PCH_LPT_DEVICE_ID_TYPE 0x8c00 -#define INTEL_PCH_LPT_LP_DEVICE_ID_TYPE 0x9c00 -#define INTEL_PCH_WPT_DEVICE_ID_TYPE 0x8c80 -#define INTEL_PCH_WPT_LP_DEVICE_ID_TYPE 0x9c80 -#define INTEL_PCH_SPT_DEVICE_ID_TYPE 0xA100 -#define INTEL_PCH_SPT_LP_DEVICE_ID_TYPE 0x9D00 -#define INTEL_PCH_KBP_DEVICE_ID_TYPE 0xA280 -#define INTEL_PCH_CNP_DEVICE_ID_TYPE 0xA300 -#define INTEL_PCH_CNP_LP_DEVICE_ID_TYPE 0x9D80 -#define INTEL_PCH_CMP_DEVICE_ID_TYPE 0x0280 -#define INTEL_PCH_CMP2_DEVICE_ID_TYPE 0x0680 -#define INTEL_PCH_CMP_V_DEVICE_ID_TYPE 0xA380 -#define INTEL_PCH_ICP_DEVICE_ID_TYPE 0x3480 -#define INTEL_PCH_ICP2_DEVICE_ID_TYPE 0x3880 -#define INTEL_PCH_MCC_DEVICE_ID_TYPE 0x4B00 -#define INTEL_PCH_TGP_DEVICE_ID_TYPE 0xA080 -#define INTEL_PCH_TGP2_DEVICE_ID_TYPE 0x4380 -#define INTEL_PCH_JSP_DEVICE_ID_TYPE 0x4D80 -#define INTEL_PCH_ADP_DEVICE_ID_TYPE 0x7A80 -#define INTEL_PCH_ADP2_DEVICE_ID_TYPE 0x5180 -#define INTEL_PCH_ADP3_DEVICE_ID_TYPE 0x7A00 -#define INTEL_PCH_ADP4_DEVICE_ID_TYPE 0x5480 -#define INTEL_PCH_P2X_DEVICE_ID_TYPE 0x7100 -#define INTEL_PCH_P3X_DEVICE_ID_TYPE 0x7000 -#define INTEL_PCH_QEMU_DEVICE_ID_TYPE 0x2900 /* qemu q35 has 2918 */ - #define INTEL_PCH_TYPE(dev_priv) ((dev_priv)->pch_type) -#define INTEL_PCH_ID(dev_priv) ((dev_priv)->pch_id) #define HAS_PCH_DG2(dev_priv) (INTEL_PCH_TYPE(dev_priv) == PCH_DG2) #define HAS_PCH_ADP(dev_priv) (INTEL_PCH_TYPE(dev_priv) == PCH_ADP) #define HAS_PCH_DG1(dev_priv) (INTEL_PCH_TYPE(dev_priv) == PCH_DG1) -- 2.39.5 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* RE: [PATCH 2/3] drm/i915/pch: Hide PCH device IDs 2025-02-07 10:17 ` [PATCH 2/3] drm/i915/pch: Hide PCH device IDs Jani Nikula @ 2025-02-11 18:03 ` Garg, Nemesa 0 siblings, 0 replies; 12+ messages in thread From: Garg, Nemesa @ 2025-02-11 18:03 UTC (permalink / raw) To: Nikula, Jani, intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org Cc: Nikula, Jani > -----Original Message----- > From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of Jani > Nikula > Sent: Friday, February 7, 2025 3:48 PM > To: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org > Cc: Nikula, Jani <jani.nikula@intel.com> > Subject: [PATCH 2/3] drm/i915/pch: Hide PCH device IDs > > Only the PCH identification code needs the PCH device IDs, as all the PCH > checks are now based on PCH type. Hide the PCH device IDs inside > intel_pch.c. Remove the unused INTEL_PCH_ID() macro while at it. > > Signed-off-by: Jani Nikula <jani.nikula@intel.com> LGTM, Reviewed-by: Nemesa Garg <nemesa.garg@intel.com> > --- > drivers/gpu/drm/i915/soc/intel_pch.c | 30 +++++++++++++++++++++++++++ > drivers/gpu/drm/i915/soc/intel_pch.h | 31 ---------------------------- > 2 files changed, 30 insertions(+), 31 deletions(-) > > diff --git a/drivers/gpu/drm/i915/soc/intel_pch.c > b/drivers/gpu/drm/i915/soc/intel_pch.c > index 0370ccb6943c..fa03b5068a19 100644 > --- a/drivers/gpu/drm/i915/soc/intel_pch.c > +++ b/drivers/gpu/drm/i915/soc/intel_pch.c > @@ -7,6 +7,36 @@ > #include "i915_utils.h" > #include "intel_pch.h" > > +#define INTEL_PCH_DEVICE_ID_MASK 0xff80 > +#define INTEL_PCH_IBX_DEVICE_ID_TYPE 0x3b00 > +#define INTEL_PCH_CPT_DEVICE_ID_TYPE 0x1c00 > +#define INTEL_PCH_PPT_DEVICE_ID_TYPE 0x1e00 > +#define INTEL_PCH_LPT_DEVICE_ID_TYPE 0x8c00 > +#define INTEL_PCH_LPT_LP_DEVICE_ID_TYPE 0x9c00 > +#define INTEL_PCH_WPT_DEVICE_ID_TYPE 0x8c80 > +#define INTEL_PCH_WPT_LP_DEVICE_ID_TYPE 0x9c80 > +#define INTEL_PCH_SPT_DEVICE_ID_TYPE 0xA100 > +#define INTEL_PCH_SPT_LP_DEVICE_ID_TYPE 0x9D00 > +#define INTEL_PCH_KBP_DEVICE_ID_TYPE 0xA280 > +#define INTEL_PCH_CNP_DEVICE_ID_TYPE 0xA300 > +#define INTEL_PCH_CNP_LP_DEVICE_ID_TYPE 0x9D80 > +#define INTEL_PCH_CMP_DEVICE_ID_TYPE 0x0280 > +#define INTEL_PCH_CMP2_DEVICE_ID_TYPE 0x0680 > +#define INTEL_PCH_CMP_V_DEVICE_ID_TYPE 0xA380 > +#define INTEL_PCH_ICP_DEVICE_ID_TYPE 0x3480 > +#define INTEL_PCH_ICP2_DEVICE_ID_TYPE 0x3880 > +#define INTEL_PCH_MCC_DEVICE_ID_TYPE 0x4B00 > +#define INTEL_PCH_TGP_DEVICE_ID_TYPE 0xA080 > +#define INTEL_PCH_TGP2_DEVICE_ID_TYPE 0x4380 > +#define INTEL_PCH_JSP_DEVICE_ID_TYPE 0x4D80 > +#define INTEL_PCH_ADP_DEVICE_ID_TYPE 0x7A80 > +#define INTEL_PCH_ADP2_DEVICE_ID_TYPE 0x5180 > +#define INTEL_PCH_ADP3_DEVICE_ID_TYPE 0x7A00 > +#define INTEL_PCH_ADP4_DEVICE_ID_TYPE 0x5480 > +#define INTEL_PCH_P2X_DEVICE_ID_TYPE 0x7100 > +#define INTEL_PCH_P3X_DEVICE_ID_TYPE 0x7000 > +#define INTEL_PCH_QEMU_DEVICE_ID_TYPE 0x2900 /* qemu q35 > has 2918 */ > + > /* Map PCH device id to PCH type, or PCH_NONE if unknown. */ static enum > intel_pch intel_pch_type(const struct drm_i915_private *dev_priv, unsigned > short id) diff --git a/drivers/gpu/drm/i915/soc/intel_pch.h > b/drivers/gpu/drm/i915/soc/intel_pch.h > index bc926df14c45..635aea7a5539 100644 > --- a/drivers/gpu/drm/i915/soc/intel_pch.h > +++ b/drivers/gpu/drm/i915/soc/intel_pch.h > @@ -34,38 +34,7 @@ enum intel_pch { > PCH_LNL, > }; > > -#define INTEL_PCH_DEVICE_ID_MASK 0xff80 > -#define INTEL_PCH_IBX_DEVICE_ID_TYPE 0x3b00 > -#define INTEL_PCH_CPT_DEVICE_ID_TYPE 0x1c00 > -#define INTEL_PCH_PPT_DEVICE_ID_TYPE 0x1e00 > -#define INTEL_PCH_LPT_DEVICE_ID_TYPE 0x8c00 > -#define INTEL_PCH_LPT_LP_DEVICE_ID_TYPE 0x9c00 > -#define INTEL_PCH_WPT_DEVICE_ID_TYPE 0x8c80 > -#define INTEL_PCH_WPT_LP_DEVICE_ID_TYPE 0x9c80 > -#define INTEL_PCH_SPT_DEVICE_ID_TYPE 0xA100 > -#define INTEL_PCH_SPT_LP_DEVICE_ID_TYPE 0x9D00 > -#define INTEL_PCH_KBP_DEVICE_ID_TYPE 0xA280 > -#define INTEL_PCH_CNP_DEVICE_ID_TYPE 0xA300 > -#define INTEL_PCH_CNP_LP_DEVICE_ID_TYPE 0x9D80 > -#define INTEL_PCH_CMP_DEVICE_ID_TYPE 0x0280 > -#define INTEL_PCH_CMP2_DEVICE_ID_TYPE 0x0680 > -#define INTEL_PCH_CMP_V_DEVICE_ID_TYPE 0xA380 > -#define INTEL_PCH_ICP_DEVICE_ID_TYPE 0x3480 > -#define INTEL_PCH_ICP2_DEVICE_ID_TYPE 0x3880 > -#define INTEL_PCH_MCC_DEVICE_ID_TYPE 0x4B00 > -#define INTEL_PCH_TGP_DEVICE_ID_TYPE 0xA080 > -#define INTEL_PCH_TGP2_DEVICE_ID_TYPE 0x4380 > -#define INTEL_PCH_JSP_DEVICE_ID_TYPE 0x4D80 > -#define INTEL_PCH_ADP_DEVICE_ID_TYPE 0x7A80 > -#define INTEL_PCH_ADP2_DEVICE_ID_TYPE 0x5180 > -#define INTEL_PCH_ADP3_DEVICE_ID_TYPE 0x7A00 > -#define INTEL_PCH_ADP4_DEVICE_ID_TYPE 0x5480 > -#define INTEL_PCH_P2X_DEVICE_ID_TYPE 0x7100 > -#define INTEL_PCH_P3X_DEVICE_ID_TYPE 0x7000 > -#define INTEL_PCH_QEMU_DEVICE_ID_TYPE 0x2900 /* qemu q35 > has 2918 */ > - > #define INTEL_PCH_TYPE(dev_priv) ((dev_priv)->pch_type) > -#define INTEL_PCH_ID(dev_priv) ((dev_priv)->pch_id) > #define HAS_PCH_DG2(dev_priv) > (INTEL_PCH_TYPE(dev_priv) == PCH_DG2) > #define HAS_PCH_ADP(dev_priv) > (INTEL_PCH_TYPE(dev_priv) == PCH_ADP) > #define HAS_PCH_DG1(dev_priv) > (INTEL_PCH_TYPE(dev_priv) == PCH_DG1) > -- > 2.39.5 ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH 3/3] drm/i915/pch: Remove unused i915->pch_id 2025-02-07 10:17 [PATCH 0/3] drm/i915/pch: small cleanups, refactors Jani Nikula 2025-02-07 10:17 ` [PATCH 1/3] drm/i915/pch: Make LPT LP a dedicated PCH type Jani Nikula 2025-02-07 10:17 ` [PATCH 2/3] drm/i915/pch: Hide PCH device IDs Jani Nikula @ 2025-02-07 10:17 ` Jani Nikula 2025-02-11 17:59 ` Garg, Nemesa 2025-02-07 15:28 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915/pch: small cleanups, refactors Patchwork ` (3 subsequent siblings) 6 siblings, 1 reply; 12+ messages in thread From: Jani Nikula @ 2025-02-07 10:17 UTC (permalink / raw) To: intel-gfx, intel-xe; +Cc: jani.nikula With the PCH checks based on PCH types instead of IDs, the i915->pch_id member has become unused. Remove it. Signed-off-by: Jani Nikula <jani.nikula@intel.com> --- drivers/gpu/drm/i915/i915_drv.h | 1 - drivers/gpu/drm/i915/soc/intel_pch.c | 4 ---- drivers/gpu/drm/xe/xe_device_types.h | 1 - 3 files changed, 6 deletions(-) diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h index b96b8de12756..ffc346379cc2 100644 --- a/drivers/gpu/drm/i915/i915_drv.h +++ b/drivers/gpu/drm/i915/i915_drv.h @@ -274,7 +274,6 @@ struct drm_i915_private { /* PCH chipset type */ enum intel_pch pch_type; - unsigned short pch_id; unsigned long gem_quirks; diff --git a/drivers/gpu/drm/i915/soc/intel_pch.c b/drivers/gpu/drm/i915/soc/intel_pch.c index fa03b5068a19..82dc7fbd1a3e 100644 --- a/drivers/gpu/drm/i915/soc/intel_pch.c +++ b/drivers/gpu/drm/i915/soc/intel_pch.c @@ -286,13 +286,11 @@ void intel_detect_pch(struct drm_i915_private *dev_priv) pch_type = intel_pch_type(dev_priv, id); if (pch_type != PCH_NONE) { dev_priv->pch_type = pch_type; - dev_priv->pch_id = id; break; } else if (intel_is_virt_pch(id, pch->subsystem_vendor, pch->subsystem_device)) { intel_virt_detect_pch(dev_priv, &id, &pch_type); dev_priv->pch_type = pch_type; - dev_priv->pch_id = id; break; } } @@ -305,12 +303,10 @@ void intel_detect_pch(struct drm_i915_private *dev_priv) drm_dbg_kms(&dev_priv->drm, "Display disabled, reverting to NOP PCH\n"); dev_priv->pch_type = PCH_NOP; - dev_priv->pch_id = 0; } else if (!pch) { if (i915_run_as_guest() && HAS_DISPLAY(dev_priv)) { intel_virt_detect_pch(dev_priv, &id, &pch_type); dev_priv->pch_type = pch_type; - dev_priv->pch_id = id; } else { drm_dbg_kms(&dev_priv->drm, "No PCH found.\n"); } diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h index c0e886bac183..c71b15897f74 100644 --- a/drivers/gpu/drm/xe/xe_device_types.h +++ b/drivers/gpu/drm/xe/xe_device_types.h @@ -547,7 +547,6 @@ struct xe_device { */ struct intel_display display; enum intel_pch pch_type; - u16 pch_id; struct dram_info { bool wm_lv_0_adjust_needed; -- 2.39.5 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* RE: [PATCH 3/3] drm/i915/pch: Remove unused i915->pch_id 2025-02-07 10:17 ` [PATCH 3/3] drm/i915/pch: Remove unused i915->pch_id Jani Nikula @ 2025-02-11 17:59 ` Garg, Nemesa 0 siblings, 0 replies; 12+ messages in thread From: Garg, Nemesa @ 2025-02-11 17:59 UTC (permalink / raw) To: Nikula, Jani, intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org Cc: Nikula, Jani > -----Original Message----- > From: Intel-xe <intel-xe-bounces@lists.freedesktop.org> On Behalf Of Jani > Nikula > Sent: Friday, February 7, 2025 3:48 PM > To: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org > Cc: Nikula, Jani <jani.nikula@intel.com> > Subject: [PATCH 3/3] drm/i915/pch: Remove unused i915->pch_id > > With the PCH checks based on PCH types instead of IDs, the i915->pch_id > member has become unused. Remove it. > > Signed-off-by: Jani Nikula <jani.nikula@intel.com> LGTM, Reviewed-by: Nemesa Garg <nemesa.garg@intel.com> > --- > drivers/gpu/drm/i915/i915_drv.h | 1 - > drivers/gpu/drm/i915/soc/intel_pch.c | 4 ---- > drivers/gpu/drm/xe/xe_device_types.h | 1 - > 3 files changed, 6 deletions(-) > > diff --git a/drivers/gpu/drm/i915/i915_drv.h > b/drivers/gpu/drm/i915/i915_drv.h index b96b8de12756..ffc346379cc2 > 100644 > --- a/drivers/gpu/drm/i915/i915_drv.h > +++ b/drivers/gpu/drm/i915/i915_drv.h > @@ -274,7 +274,6 @@ struct drm_i915_private { > > /* PCH chipset type */ > enum intel_pch pch_type; > - unsigned short pch_id; > > unsigned long gem_quirks; > > diff --git a/drivers/gpu/drm/i915/soc/intel_pch.c > b/drivers/gpu/drm/i915/soc/intel_pch.c > index fa03b5068a19..82dc7fbd1a3e 100644 > --- a/drivers/gpu/drm/i915/soc/intel_pch.c > +++ b/drivers/gpu/drm/i915/soc/intel_pch.c > @@ -286,13 +286,11 @@ void intel_detect_pch(struct drm_i915_private > *dev_priv) > pch_type = intel_pch_type(dev_priv, id); > if (pch_type != PCH_NONE) { > dev_priv->pch_type = pch_type; > - dev_priv->pch_id = id; > break; > } else if (intel_is_virt_pch(id, pch->subsystem_vendor, > pch->subsystem_device)) { > intel_virt_detect_pch(dev_priv, &id, &pch_type); > dev_priv->pch_type = pch_type; > - dev_priv->pch_id = id; > break; > } > } > @@ -305,12 +303,10 @@ void intel_detect_pch(struct drm_i915_private > *dev_priv) > drm_dbg_kms(&dev_priv->drm, > "Display disabled, reverting to NOP PCH\n"); > dev_priv->pch_type = PCH_NOP; > - dev_priv->pch_id = 0; > } else if (!pch) { > if (i915_run_as_guest() && HAS_DISPLAY(dev_priv)) { > intel_virt_detect_pch(dev_priv, &id, &pch_type); > dev_priv->pch_type = pch_type; > - dev_priv->pch_id = id; > } else { > drm_dbg_kms(&dev_priv->drm, "No PCH found.\n"); > } > diff --git a/drivers/gpu/drm/xe/xe_device_types.h > b/drivers/gpu/drm/xe/xe_device_types.h > index c0e886bac183..c71b15897f74 100644 > --- a/drivers/gpu/drm/xe/xe_device_types.h > +++ b/drivers/gpu/drm/xe/xe_device_types.h > @@ -547,7 +547,6 @@ struct xe_device { > */ > struct intel_display display; > enum intel_pch pch_type; > - u16 pch_id; > > struct dram_info { > bool wm_lv_0_adjust_needed; > -- > 2.39.5 ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Fi.CI.CHECKPATCH: warning for drm/i915/pch: small cleanups, refactors 2025-02-07 10:17 [PATCH 0/3] drm/i915/pch: small cleanups, refactors Jani Nikula ` (2 preceding siblings ...) 2025-02-07 10:17 ` [PATCH 3/3] drm/i915/pch: Remove unused i915->pch_id Jani Nikula @ 2025-02-07 15:28 ` Patchwork 2025-02-07 15:28 ` ✗ Fi.CI.SPARSE: " Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2025-02-07 15:28 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx == Series Details == Series: drm/i915/pch: small cleanups, refactors URL : https://patchwork.freedesktop.org/series/144489/ State : warning == Summary == Error: dim checkpatch failed 7bc5fca8d7b8 drm/i915/pch: Make LPT LP a dedicated PCH type -:92: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'dev_priv' - possible side-effects? #92: FILE: drivers/gpu/drm/i915/soc/intel_pch.h:78: +#define HAS_PCH_LPT(dev_priv) (INTEL_PCH_TYPE(dev_priv) == PCH_LPT_H || \ + INTEL_PCH_TYPE(dev_priv) == PCH_LPT_LP) total: 0 errors, 0 warnings, 1 checks, 66 lines checked 560b81a36580 drm/i915/pch: Hide PCH device IDs 949b38b157d3 drm/i915/pch: Remove unused i915->pch_id ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Fi.CI.SPARSE: warning for drm/i915/pch: small cleanups, refactors 2025-02-07 10:17 [PATCH 0/3] drm/i915/pch: small cleanups, refactors Jani Nikula ` (3 preceding siblings ...) 2025-02-07 15:28 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915/pch: small cleanups, refactors Patchwork @ 2025-02-07 15:28 ` Patchwork 2025-02-07 18:49 ` ✓ i915.CI.BAT: success " Patchwork 2025-02-08 6:02 ` ✗ i915.CI.Full: failure " Patchwork 6 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2025-02-07 15:28 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx == Series Details == Series: drm/i915/pch: small cleanups, refactors URL : https://patchwork.freedesktop.org/series/144489/ State : warning == Summary == Error: dim sparse failed Sparse version: v0.6.2 Fast mode used, each commit won't be checked separately. ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ i915.CI.BAT: success for drm/i915/pch: small cleanups, refactors 2025-02-07 10:17 [PATCH 0/3] drm/i915/pch: small cleanups, refactors Jani Nikula ` (4 preceding siblings ...) 2025-02-07 15:28 ` ✗ Fi.CI.SPARSE: " Patchwork @ 2025-02-07 18:49 ` Patchwork 2025-02-08 6:02 ` ✗ i915.CI.Full: failure " Patchwork 6 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2025-02-07 18:49 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 4169 bytes --] == Series Details == Series: drm/i915/pch: small cleanups, refactors URL : https://patchwork.freedesktop.org/series/144489/ State : success == Summary == CI Bug Log - changes from CI_DRM_16084 -> Patchwork_144489v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/index.html Participating hosts (45 -> 44) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_144489v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_rpm@module-reload: - bat-dg2-11: [PASS][1] -> [FAIL][2] ([i915#13633]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/bat-dg2-11/igt@i915_pm_rpm@module-reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/bat-dg2-11/igt@i915_pm_rpm@module-reload.html - bat-dg1-7: [PASS][3] -> [FAIL][4] ([i915#13633]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/bat-dg1-7/igt@i915_pm_rpm@module-reload.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/bat-dg1-7/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/bat-mtlp-6/igt@i915_selftest@live@workarounds.html - bat-arls-6: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061]) +1 other test dmesg-fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/bat-arls-6/igt@i915_selftest@live@workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/bat-arls-6/igt@i915_selftest@live@workarounds.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: [PASS][9] -> [SKIP][10] ([i915#9197]) +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html #### Possible fixes #### * igt@i915_selftest@live@workarounds: - bat-arlh-3: [DMESG-FAIL][11] ([i915#12061]) -> [PASS][12] +1 other test pass [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/bat-arlh-3/igt@i915_selftest@live@workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/bat-arlh-3/igt@i915_selftest@live@workarounds.html - bat-arls-5: [DMESG-FAIL][13] ([i915#12061]) -> [PASS][14] +1 other test pass [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/bat-arls-5/igt@i915_selftest@live@workarounds.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/bat-arls-5/igt@i915_selftest@live@workarounds.html - bat-mtlp-9: [DMESG-FAIL][15] ([i915#12061]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#13633]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13633 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 Build changes ------------- * Linux: CI_DRM_16084 -> Patchwork_144489v1 CI-20190529: 20190529 CI_DRM_16084: f8ea772f4fb5a761d1dc321aad5749633d0801eb @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8224: c659b986ba648584d36b3cfece897bc84a33dcbb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_144489v1: f8ea772f4fb5a761d1dc321aad5749633d0801eb @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/index.html [-- Attachment #2: Type: text/html, Size: 5237 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ i915.CI.Full: failure for drm/i915/pch: small cleanups, refactors 2025-02-07 10:17 [PATCH 0/3] drm/i915/pch: small cleanups, refactors Jani Nikula ` (5 preceding siblings ...) 2025-02-07 18:49 ` ✓ i915.CI.BAT: success " Patchwork @ 2025-02-08 6:02 ` Patchwork 6 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2025-02-08 6:02 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 100266 bytes --] == Series Details == Series: drm/i915/pch: small cleanups, refactors URL : https://patchwork.freedesktop.org/series/144489/ State : failure == Summary == CI Bug Log - changes from CI_DRM_16084_full -> Patchwork_144489v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_144489v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_144489v1_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 (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_144489v1_full: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_rps@reset: - shard-snb: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-snb7/igt@i915_pm_rps@reset.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-snb1/igt@i915_pm_rps@reset.html * igt@kms_big_fb@linear-32bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][3] +26 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@kms_big_fb@linear-32bpp-rotate-180.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs: - shard-rkl: [PASS][4] -> [SKIP][5] +46 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-rkl-1/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html * igt@kms_fbcon_fbt@fbc: - shard-snb: NOTRUN -> [INCOMPLETE][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-snb5/igt@kms_fbcon_fbt@fbc.html #### Warnings #### * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-rkl: [SKIP][7] ([i915#5286]) -> [SKIP][8] +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-rkl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: [SKIP][9] ([i915#3638]) -> [SKIP][10] +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-rkl-3/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc: - shard-rkl: [SKIP][11] ([i915#6095]) -> [SKIP][12] +7 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-rkl-1/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html * igt@kms_content_protection@atomic: - shard-rkl: [SKIP][13] ([i915#7118] / [i915#9424]) -> [SKIP][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-rkl-1/igt@kms_content_protection@atomic.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-rkl: [SKIP][15] ([i915#3116]) -> [SKIP][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-rkl-1/igt@kms_content_protection@dp-mst-lic-type-1.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: [SKIP][17] ([i915#3555]) -> [SKIP][18] +3 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-32x32.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-rkl: [FAIL][19] ([i915#13566]) -> [SKIP][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-rkl-1/igt@kms_cursor_crc@cursor-random-256x85.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: [SKIP][21] ([i915#4103]) -> [SKIP][22] +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipa-legacy: - shard-rkl: [DMESG-WARN][23] ([i915#12964]) -> [SKIP][24] +2 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-rkl-3/igt@kms_cursor_legacy@cursora-vs-flipa-legacy.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@kms_cursor_legacy@cursora-vs-flipa-legacy.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-rkl: [SKIP][25] ([i915#12402]) -> [SKIP][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-rkl-1/igt@kms_dp_linktrain_fallback@dp-fallback.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-rkl: [SKIP][27] ([i915#3555] / [i915#3840]) -> [SKIP][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-rkl-1/igt@kms_dsc@dsc-with-bpc-formats.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_hdr@static-toggle-dpms: - shard-rkl: [SKIP][29] ([i915#3555] / [i915#8228]) -> [SKIP][30] +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-rkl-1/igt@kms_hdr@static-toggle-dpms.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@kms_hdr@static-toggle-dpms.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: [SKIP][31] ([i915#5289]) -> [SKIP][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-rkl-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html Known issues ------------ Here are the changes found in Patchwork_144489v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#6230]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-2/igt@api_intel_bb@crc32.html - shard-dg1: NOTRUN -> [SKIP][34] ([i915#6230]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-13/igt@api_intel_bb@crc32.html * igt@device_reset@unbind-cold-reset-rebind: - shard-tglu-1: NOTRUN -> [SKIP][35] ([i915#11078]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@device_reset@unbind-cold-reset-rebind.html - shard-dg2-9: NOTRUN -> [SKIP][36] ([i915#11078]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@device_reset@unbind-cold-reset-rebind.html * igt@device_reset@unbind-reset-rebind: - shard-tglu: NOTRUN -> [ABORT][37] ([i915#12817] / [i915#5507]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-10/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@busy-hang@bcs0: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#8414]) +8 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@drm_fdinfo@busy-hang@bcs0.html * igt@drm_fdinfo@busy-idle-check-all@vcs1: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#8414]) +12 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-13/igt@drm_fdinfo@busy-idle-check-all@vcs1.html * igt@drm_fdinfo@virtual-busy: - shard-dg2-9: NOTRUN -> [SKIP][40] ([i915#8414]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@drm_fdinfo@virtual-busy.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4873]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-2/igt@gem_caching@writes.html - shard-rkl: NOTRUN -> [DMESG-WARN][42] ([i915#12917] / [i915#12964]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-2/igt@gem_caching@writes.html * igt@gem_ccs@block-multicopy-compressed: - shard-tglu-1: NOTRUN -> [SKIP][43] ([i915#9323]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@ctrl-surf-copy: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#3555] / [i915#9323]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-17/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-tglu: NOTRUN -> [SKIP][45] ([i915#9323]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-10/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2-9: NOTRUN -> [SKIP][46] ([i915#7697]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@gem_close_race@multigpu-basic-threads.html - shard-rkl: NOTRUN -> [SKIP][47] ([i915#7697]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-7/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][48] ([i915#6335]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-9/igt@gem_create@create-ext-cpu-access-sanity-check.html - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#6335]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-5/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_persistence@engines-mixed-process@vecs0: - shard-rkl: [PASS][50] -> [DMESG-WARN][51] ([i915#12964]) +6 other tests dmesg-warn [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-rkl-4/igt@gem_ctx_persistence@engines-mixed-process@vecs0.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-5/igt@gem_ctx_persistence@engines-mixed-process@vecs0.html * igt@gem_ctx_persistence@file: - shard-snb: NOTRUN -> [SKIP][52] ([i915#1099]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-snb1/igt@gem_ctx_persistence@file.html * igt@gem_ctx_persistence@hang: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#8555]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-2/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#8555]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-14/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1: - shard-dg2-9: NOTRUN -> [SKIP][55] ([i915#5882]) +7 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1.html * igt@gem_ctx_sseu@invalid-args: - shard-tglu-1: NOTRUN -> [SKIP][56] ([i915#280]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#280]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@in-flight-1us: - shard-mtlp: [PASS][58] -> [ABORT][59] ([i915#13193]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-mtlp-6/igt@gem_eio@in-flight-1us.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-7/igt@gem_eio@in-flight-1us.html * igt@gem_exec_balancer@bonded-pair: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4771]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-17/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2-9: NOTRUN -> [SKIP][61] ([i915#4812]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@parallel-bb-first: - shard-tglu-1: NOTRUN -> [SKIP][62] ([i915#4525]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#4525]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_capture@capture-invisible: - shard-dg2-9: NOTRUN -> [SKIP][64] ([i915#6334]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@gem_exec_capture@capture-invisible.html - shard-tglu-1: NOTRUN -> [SKIP][65] ([i915#6334]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][66] ([i915#6334]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-glk4/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@capture-recoverable: - shard-tglu-1: NOTRUN -> [SKIP][67] ([i915#6344]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_endless@dispatch: - shard-dg1: [PASS][68] -> [TIMEOUT][69] ([i915#3778]) +1 other test timeout [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-dg1-18/igt@gem_exec_endless@dispatch.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-12/igt@gem_exec_endless@dispatch.html * igt@gem_exec_fence@submit67: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4812]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-2/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#3539] / [i915#4852]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#3539]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-13/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2-9: NOTRUN -> [SKIP][73] ([i915#3539]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_flush@basic-wb-rw-default: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#3539] / [i915#4852]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-17/igt@gem_exec_flush@basic-wb-rw-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2-9: NOTRUN -> [SKIP][75] ([i915#5107]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-dg2-9: NOTRUN -> [SKIP][76] ([i915#3281]) +5 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_reloc@basic-gtt-noreloc: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#3281]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-2/igt@gem_exec_reloc@basic-gtt-noreloc.html * igt@gem_exec_reloc@basic-softpin: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#3281]) +10 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-2/igt@gem_exec_reloc@basic-softpin.html * igt@gem_exec_reloc@basic-wc-read: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#3281]) +8 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-13/igt@gem_exec_reloc@basic-wc-read.html * igt@gem_exec_reloc@basic-write-gtt: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3281]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@gem_exec_reloc@basic-write-gtt.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2-9: NOTRUN -> [SKIP][81] ([i915#4537] / [i915#4812]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][82] ([i915#7276]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-2/igt@gem_exec_schedule@semaphore-power.html - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#4537] / [i915#4812]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-2/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s4-devices: - shard-dg2: NOTRUN -> [ABORT][84] ([i915#7975]) +1 other test abort [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#4860]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-17/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#4860]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-2/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_huc_copy@huc-copy: - shard-tglu-1: NOTRUN -> [SKIP][87] ([i915#2190]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#4613]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-8/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-tglu-1: NOTRUN -> [SKIP][89] ([i915#4613]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#12193]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-14/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#4565]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-14/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-random: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#4613]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-2/igt@gem_lmem_swapping@parallel-random.html * igt@gem_lmem_swapping@random-engines: - shard-tglu: NOTRUN -> [SKIP][93] ([i915#4613]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-9/igt@gem_lmem_swapping@random-engines.html * igt@gem_media_vme: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#284]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-2/igt@gem_media_vme.html - shard-dg1: NOTRUN -> [SKIP][95] ([i915#284]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-13/igt@gem_media_vme.html * igt@gem_mmap@bad-object: - shard-dg2-9: NOTRUN -> [SKIP][96] ([i915#4083]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@gem_mmap@bad-object.html * igt@gem_mmap@bad-offset: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#4083]) +4 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-17/igt@gem_mmap@bad-offset.html * igt@gem_mmap_gtt@bad-object: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#4077]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@gem_mmap_gtt@bad-object.html * igt@gem_mmap_gtt@coherency: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#4077]) +5 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-13/igt@gem_mmap_gtt@coherency.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2-9: NOTRUN -> [SKIP][100] ([i915#4077]) +8 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@read-write: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#4083]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-2/igt@gem_mmap_wc@read-write.html * igt@gem_mmap_wc@set-cache-level: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#1850]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@gem_mmap_wc@set-cache-level.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4083]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@write: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#3282]) +2 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@gem_partial_pwrite_pread@write.html * igt@gem_pread@bench: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#3282]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-14/igt@gem_pread@bench.html * igt@gem_pread@display: - shard-dg2-9: NOTRUN -> [SKIP][106] ([i915#3282]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@gem_pread@display.html * igt@gem_pread@exhaustion: - shard-tglu-1: NOTRUN -> [WARN][107] ([i915#2658]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@gem_pread@exhaustion.html * igt@gem_pwrite_snooped: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#3282]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@gem_pwrite_snooped.html * igt@gem_pxp@create-protected-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][109] ([i915#12964]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-2/igt@gem_pxp@create-protected-buffer.html - shard-dg1: NOTRUN -> [SKIP][110] ([i915#4270]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-13/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [TIMEOUT][111] ([i915#12917] / [i915#12964]) +3 other tests timeout [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-2/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2-9: NOTRUN -> [SKIP][112] ([i915#4270]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-rkl: [PASS][113] -> [SKIP][114] ([i915#4270]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-off-1.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-rkl: [PASS][115] -> [TIMEOUT][116] ([i915#12917] / [i915#12964]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-rkl-8/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-5/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#5190] / [i915#8428]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-dg2-9: NOTRUN -> [SKIP][118] ([i915#5190] / [i915#8428]) +2 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_render_copy@y-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][119] ([i915#8428]) +4 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-5/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#8411]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#4079]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-2/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#4079]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-13/igt@gem_set_tiling_vs_gtt.html * igt@gem_tiled_pread_pwrite: - shard-dg2-9: NOTRUN -> [SKIP][123] ([i915#4079]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@gem_tiled_pread_pwrite.html * igt@gem_tiled_swapping@non-threaded: - shard-tglu: [PASS][124] -> [FAIL][125] ([i915#12941]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-tglu-9/igt@gem_tiled_swapping@non-threaded.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-8/igt@gem_tiled_swapping@non-threaded.html * igt@gem_unfence_active_buffers: - shard-dg2-9: NOTRUN -> [SKIP][126] ([i915#4879]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@coherency-sync: - shard-tglu-1: NOTRUN -> [SKIP][127] ([i915#3297]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#3297]) +3 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-17/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#3297]) +2 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-7/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#3282] / [i915#3297]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-14/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#3297] / [i915#4880]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#3297] / [i915#4880]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#3281] / [i915#3297]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-unmap: - shard-dg2-9: NOTRUN -> [SKIP][134] ([i915#3297]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#3297]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen7_exec_parse@cmd-crossing-page: - shard-dg2: NOTRUN -> [SKIP][136] +5 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@gen7_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@batch-invalid-length: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#2856]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-5/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@batch-without-end: - shard-dg2-9: NOTRUN -> [SKIP][138] ([i915#2856]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@batch-zero-length: - shard-tglu: NOTRUN -> [SKIP][139] ([i915#2527] / [i915#2856]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-10/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-chained: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#2527]) +4 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#2527]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-14/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@bb-start-param: - shard-tglu-1: NOTRUN -> [SKIP][142] ([i915#2527] / [i915#2856]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@secure-batches: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#2856]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@gen9_exec_parse@secure-batches.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: NOTRUN -> [ABORT][144] ([i915#9820]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#8399]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_freq_api@freq-suspend: - shard-tglu: NOTRUN -> [SKIP][146] ([i915#8399]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-9/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#6590]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-10/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: [PASS][148] -> [FAIL][149] ([i915#3591]) +1 other test fail [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#11681] / [i915#6621]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#11681]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-13/igt@i915_pm_rps@thresholds.html * igt@i915_pm_rps@thresholds-idle: - shard-dg2-9: NOTRUN -> [SKIP][152] ([i915#11681]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@i915_pm_rps@thresholds-idle.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2-9: NOTRUN -> [SKIP][153] ([i915#6188]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@i915_query@query-topology-coherent-slice-mask.html * igt@intel_hwmon@hwmon-read: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#7707]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#4212]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-2/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-dg2-9: NOTRUN -> [SKIP][156] ([i915#4212]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#4212]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#4212]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-13/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#4215]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-14/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#12454] / [i915#12712]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#8709]) +3 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-14/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#8709]) +15 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html * igt@kms_async_flips@invalid-async-flip-atomic: - shard-dg2-9: NOTRUN -> [SKIP][163] ([i915#12967]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_async_flips@invalid-async-flip-atomic.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#1769] / [i915#3555]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-dg2: NOTRUN -> [FAIL][165] ([i915#5956]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-16bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#5286]) +5 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#5286]) +2 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-10/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][168] ([i915#4538] / [i915#5286]) +2 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-17/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#5286]) +4 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][170] -> [DMESG-FAIL][171] ([i915#13314]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-snb: NOTRUN -> [SKIP][172] +30 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-snb1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][173] +11 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-2/igt@kms_big_fb@linear-64bpp-rotate-270.html - shard-rkl: NOTRUN -> [SKIP][174] ([i915#3638]) +2 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-2/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#3638]) +2 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-17/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2-9: NOTRUN -> [SKIP][176] +6 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-glk: NOTRUN -> [SKIP][177] +3 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-glk4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#4538] / [i915#5190]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#5190]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#6187]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg1: [PASS][181] -> [DMESG-WARN][182] ([i915#4423]) +1 other test dmesg-warn [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-dg1-13/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-13/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-270: - shard-dg2-9: NOTRUN -> [SKIP][183] ([i915#4538] / [i915#5190]) +7 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][184] ([i915#4538]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-13/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][185] +34 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-9/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs: - shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#6095]) +39 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#10307] / [i915#6095]) +183 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-6/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#12313]) +2 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html - shard-dg1: NOTRUN -> [SKIP][190] ([i915#12313]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-13/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#6095]) +29 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2-9: NOTRUN -> [SKIP][192] ([i915#12805]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][193] ([i915#12805]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][194] ([i915#6095]) +34 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-9/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [DMESG-FAIL][195] ([i915#12964]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#6095]) +24 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#6095]) +77 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#12313]) +2 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#6095]) +131 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc: - shard-dg2-9: NOTRUN -> [SKIP][200] ([i915#10307] / [i915#6095]) +54 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html * igt@kms_cdclk@mode-transition: - shard-dg2-9: NOTRUN -> [SKIP][201] ([i915#11616] / [i915#7213]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_cdclk@mode-transition.html - shard-rkl: NOTRUN -> [SKIP][202] ([i915#3742]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-7/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][203] ([i915#3742]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-13/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][204] ([i915#7213]) +3 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html * igt@kms_cdclk@plane-scaling: - shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#3742]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_audio@dp-audio: - shard-dg2-9: NOTRUN -> [SKIP][206] ([i915#11151] / [i915#7828]) +7 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_edid@dp-edid-read: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#11151] / [i915#7828]) +3 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@kms_chamelium_edid@dp-edid-read.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#11151] / [i915#7828]) +3 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-13/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#11151] / [i915#7828]) +7 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#11151] / [i915#7828]) +9 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-tglu: NOTRUN -> [SKIP][211] ([i915#11151] / [i915#7828]) +2 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-10/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#11151] / [i915#7828]) +3 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-2/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_content_protection@atomic@pipe-a-dp-3: - shard-dg2: NOTRUN -> [FAIL][213] ([i915#7173]) +1 other test fail [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-3.html * igt@kms_content_protection@content-type-change: - shard-dg1: NOTRUN -> [SKIP][214] ([i915#9424]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-17/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2-9: NOTRUN -> [SKIP][215] ([i915#3299]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@legacy: - shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@kms_content_protection@legacy.html * igt@kms_content_protection@mei-interface: - shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#6944] / [i915#9424]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#6944] / [i915#9424]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-2/igt@kms_content_protection@uevent.html - shard-rkl: NOTRUN -> [SKIP][219] ([i915#7118] / [i915#9424]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-2/igt@kms_content_protection@uevent.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][220] ([i915#1339] / [i915#7173]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-10/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][221] ([i915#13049]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-10/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#13049]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-rkl: NOTRUN -> [SKIP][223] ([i915#13049]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#3555]) +6 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-14/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-dg2-9: NOTRUN -> [SKIP][225] ([i915#3555]) +5 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#3555]) +4 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#3555]) +2 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-tglu: NOTRUN -> [SKIP][228] ([i915#3555]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-10/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-tglu-1: NOTRUN -> [SKIP][229] ([i915#13049]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-dg2-9: NOTRUN -> [SKIP][230] ([i915#13049]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][231] +21 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-glk: [PASS][232] -> [FAIL][233] ([i915#13028]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-glk1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-glk4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#4103] / [i915#4213]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#4103] / [i915#4213]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2-9: NOTRUN -> [SKIP][236] ([i915#13046] / [i915#5354]) +3 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#9809]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#4213]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][239] ([i915#4103]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#9723]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-snb: [PASS][241] -> [SKIP][242] +4 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-snb7/igt@kms_display_modes@extended-mode-basic.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-snb1/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu: NOTRUN -> [SKIP][243] ([i915#1769] / [i915#3555] / [i915#3804]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][244] ([i915#3804]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#3804]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_aux_dev: - shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#1257]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg2-9: NOTRUN -> [SKIP][247] ([i915#8812]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_draw_crc@draw-method-pwrite: - shard-rkl: NOTRUN -> [DMESG-WARN][248] ([i915#12964]) +20 other tests dmesg-warn [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-2/igt@kms_draw_crc@draw-method-pwrite.html * igt@kms_dsc@dsc-fractional-bpp: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#3840]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-7/igt@kms_dsc@dsc-fractional-bpp.html - shard-dg2-9: NOTRUN -> [SKIP][250] ([i915#3840] / [i915#9688]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-tglu: NOTRUN -> [SKIP][251] ([i915#3840]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-10/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#3555] / [i915#3840]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2-9: NOTRUN -> [SKIP][253] ([i915#3555] / [i915#3840]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg1: NOTRUN -> [SKIP][254] ([i915#3555] / [i915#3840]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-17/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][255] ([i915#3955]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-2/igt@kms_fbcon_fbt@psr.html - shard-dg1: NOTRUN -> [SKIP][256] ([i915#3469]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-13/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#4854]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-4x: - shard-tglu-1: NOTRUN -> [SKIP][258] ([i915#1839]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2-9: NOTRUN -> [SKIP][259] ([i915#9337]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_feature_discovery@dp-mst.html - shard-rkl: NOTRUN -> [SKIP][260] ([i915#9337]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-7/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr2: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#658]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@kms_feature_discovery@psr2.html * igt@kms_fence_pin_leak: - shard-dg2-9: NOTRUN -> [SKIP][262] ([i915#4881]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#9934]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#3637]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-5/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-tglu: NOTRUN -> [SKIP][265] ([i915#3637]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-10/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-panning-interruptible: - shard-dg2-9: NOTRUN -> [SKIP][266] ([i915#9934]) +4 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_flip@2x-flip-vs-panning-interruptible.html - shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#3637]) +2 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@kms_flip@2x-flip-vs-panning-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#9934]) +14 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-7/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-dg1: NOTRUN -> [SKIP][269] ([i915#9934]) +2 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-13/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][270] ([i915#12745] / [i915#4839]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-glk4/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][271] ([i915#12745]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-glk4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1: - shard-mtlp: [PASS][272] -> [FAIL][273] ([i915#11989]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-mtlp-4/igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-1/igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1.html * igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a3: - shard-dg2: NOTRUN -> [FAIL][274] ([i915#11989]) +2 other tests fail [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-5/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a3.html * igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1: - shard-snb: [PASS][275] -> [FAIL][276] ([i915#11989]) +2 other tests fail [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-snb4/igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-snb7/igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1.html * igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1: - shard-tglu: [PASS][277] -> [FAIL][278] ([i915#11989]) +1 other test fail [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-tglu-5/igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-7/igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][279] ([i915#2587] / [i915#2672]) +3 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#2587] / [i915#2672]) +2 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#3555] / [i915#8810] / [i915#8813]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][282] ([i915#3555] / [i915#8810]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-dg2-9: NOTRUN -> [SKIP][283] ([i915#2672] / [i915#3555]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-dg2-9: NOTRUN -> [SKIP][284] ([i915#2672]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][285] ([i915#2587] / [i915#2672]) +2 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg1: NOTRUN -> [SKIP][286] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-rkl: [PASS][287] -> [SKIP][288] ([i915#3555]) +4 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-tglu: NOTRUN -> [SKIP][289] ([i915#2672] / [i915#3555]) +2 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][290] ([i915#2672] / [i915#3555]) +2 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-dg1: NOTRUN -> [SKIP][291] ([i915#2672] / [i915#3555]) +1 other test skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][292] ([i915#2672] / [i915#3555]) +2 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][293] ([i915#2672] / [i915#8813]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][294] ([i915#2672]) +3 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][295] ([i915#2672] / [i915#3555]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][296] ([i915#2672]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2: [PASS][298] -> [FAIL][299] ([i915#6880]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#8708]) +5 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][301] ([i915#1825]) +8 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt: - shard-dg2-9: NOTRUN -> [SKIP][302] ([i915#8708]) +12 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-dg2-9: NOTRUN -> [FAIL][303] ([i915#6880]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render: - shard-rkl: [PASS][304] -> [SKIP][305] ([i915#1849] / [i915#5354]) +8 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg1: NOTRUN -> [DMESG-WARN][306] ([i915#4423]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-dg2-9: NOTRUN -> [SKIP][307] ([i915#3458]) +9 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-fullscreen: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#3458]) +3 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][309] +33 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][310] ([i915#8708]) +6 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#5354]) +9 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move: - shard-dg2-9: NOTRUN -> [SKIP][312] ([i915#5354]) +19 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][313] ([i915#8708]) +8 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][314] ([i915#1825]) +26 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#1849] / [i915#5354]) +19 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][316] ([i915#3023]) +24 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][317] ([i915#5439]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-9: NOTRUN -> [SKIP][318] ([i915#10055]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu: NOTRUN -> [SKIP][319] ([i915#9766]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-10/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][320] +57 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-dg1: NOTRUN -> [SKIP][321] ([i915#3458]) +15 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_hdr@bpc-switch: - shard-dg2: [PASS][322] -> [SKIP][323] ([i915#3555] / [i915#8228]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-dg2-10/igt@kms_hdr@bpc-switch.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-5/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: NOTRUN -> [SKIP][324] ([i915#3555] / [i915#8228]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-7/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg2-9: NOTRUN -> [SKIP][325] ([i915#3555] / [i915#8228]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@invalid-metadata-sizes: - shard-mtlp: NOTRUN -> [SKIP][326] ([i915#3555] / [i915#8228]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-2/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-suspend: - shard-dg1: NOTRUN -> [SKIP][327] ([i915#3555] / [i915#8228]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-17/igt@kms_hdr@static-toggle-suspend.html * igt@kms_invalid_mode@zero-hdisplay: - shard-rkl: NOTRUN -> [SKIP][328] ([i915#3555]) +8 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@kms_invalid_mode@zero-hdisplay.html * igt@kms_joiner@basic-big-joiner: - shard-tglu: NOTRUN -> [SKIP][329] ([i915#10656]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-9/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg2-9: NOTRUN -> [SKIP][330] ([i915#10656]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_joiner@basic-force-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][331] ([i915#12394]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-7/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][332] ([i915#10656]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: [PASS][333] -> [SKIP][334] ([i915#12388]) +1 other test skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-dg2-11/igt@kms_joiner@invalid-modeset-force-big-joiner.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][335] ([i915#12339]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][336] ([i915#4816]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-rkl: NOTRUN -> [SKIP][337] ([i915#6301]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-2/igt@kms_panel_fitting@legacy.html - shard-dg1: NOTRUN -> [SKIP][338] ([i915#6301]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-13/igt@kms_panel_fitting@legacy.html * igt@kms_plane@planar-pixel-format-settings: - shard-rkl: [PASS][339] -> [SKIP][340] ([i915#9581]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-rkl-3/igt@kms_plane@planar-pixel-format-settings.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@kms_plane@planar-pixel-format-settings.html * igt@kms_plane@plane-position-covered: - shard-rkl: [PASS][341] -> [SKIP][342] ([i915#8825]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-rkl-1/igt@kms_plane@plane-position-covered.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@kms_plane@plane-position-covered.html * igt@kms_plane_alpha_blend@constant-alpha-min: - shard-rkl: [PASS][343] -> [SKIP][344] ([i915#7294]) +1 other test skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-rkl-1/igt@kms_plane_alpha_blend@constant-alpha-min.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@kms_plane_alpha_blend@constant-alpha-min.html * igt@kms_plane_multiple@tiling-y: - shard-dg2-9: NOTRUN -> [SKIP][345] ([i915#8806]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-dg2-9: NOTRUN -> [SKIP][346] ([i915#3555] / [i915#8806]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-rkl: NOTRUN -> [SKIP][347] ([i915#6953]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size.html - shard-dg1: NOTRUN -> [SKIP][348] ([i915#6953]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-13/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c: - shard-rkl: NOTRUN -> [SKIP][349] ([i915#12247] / [i915#8152]) +5 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2-9: NOTRUN -> [SKIP][350] ([i915#12247] / [i915#9423]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d: - shard-dg2-9: NOTRUN -> [SKIP][351] ([i915#12247]) +7 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg2-9: NOTRUN -> [SKIP][352] ([i915#12247] / [i915#6953] / [i915#9423]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-tglu-1: NOTRUN -> [SKIP][353] ([i915#12247] / [i915#6953]) +1 other test skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c: - shard-tglu-1: NOTRUN -> [SKIP][354] ([i915#12247]) +17 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - shard-rkl: [PASS][355] -> [SKIP][356] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-75.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20: - shard-rkl: [PASS][357] -> [SKIP][358] ([i915#12247] / [i915#8152]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b: - shard-rkl: [PASS][359] -> [SKIP][360] ([i915#12247]) +3 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][361] ([i915#12247] / [i915#3555]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-rkl: NOTRUN -> [SKIP][362] ([i915#12247] / [i915#6953] / [i915#8152]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b: - shard-rkl: NOTRUN -> [SKIP][363] ([i915#12247]) +11 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][364] ([i915#12247] / [i915#6953]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-14/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b: - shard-dg1: NOTRUN -> [SKIP][365] ([i915#12247]) +8 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-14/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][366] ([i915#12247] / [i915#6953]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c: - shard-mtlp: NOTRUN -> [SKIP][367] ([i915#12247]) +3 other tests skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c.html * igt@kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][368] ([i915#5354]) +1 other test skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-7/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2: NOTRUN -> [SKIP][369] ([i915#12343]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-dg1: NOTRUN -> [SKIP][370] ([i915#5354]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-14/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-tglu-1: NOTRUN -> [SKIP][371] ([i915#9685]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][372] ([i915#3361]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-2/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: NOTRUN -> [SKIP][373] ([i915#3828]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg2-9: NOTRUN -> [SKIP][374] ([i915#8430]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@cursor-dpms: - shard-mtlp: NOTRUN -> [SKIP][375] ([i915#4077]) +3 other tests skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-2/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2-9: NOTRUN -> [SKIP][376] ([i915#9519]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [PASS][377] -> [SKIP][378] ([i915#9519]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16084/shard-dg2-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu-1: NOTRUN -> [SKIP][379] ([i915#9519]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: NOTRUN -> [SKIP][380] ([i915#9519]) +2 other tests skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][381] ([i915#6524]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-7/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-tglu: NOTRUN -> [SKIP][382] ([i915#6524]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-9/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_prime@d3hot: - shard-tglu-1: NOTRUN -> [SKIP][383] ([i915#6524]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-glk: NOTRUN -> [SKIP][384] ([i915#11520]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-glk4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf: - shard-mtlp: NOTRUN -> [SKIP][385] ([i915#12316]) +2 other tests skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][386] ([i915#11520]) +5 other tests skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-14/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][387] ([i915#11520]) +4 other tests skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][388] ([i915#11520]) +3 other tests skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-9/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][389] ([i915#11520]) +7 other tests skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-7/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][390] ([i915#11520]) +1 other test skip [390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2-9: NOTRUN -> [SKIP][391] ([i915#11520]) +4 other tests skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg1: NOTRUN -> [SKIP][392] ([i915#9683]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-17/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2-9: NOTRUN -> [SKIP][393] ([i915#9683]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_psr2_su@page_flip-p010.html - shard-tglu-1: NOTRUN -> [SKIP][394] ([i915#9683]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][395] ([i915#9683]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-8/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-cursor-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][396] ([i915#1072] / [i915#9732]) +25 other tests skip [396]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-2/igt@kms_psr@fbc-pr-cursor-plane-onoff.html * igt@kms_psr@fbc-pr-primary-blt: - shard-mtlp: NOTRUN -> [SKIP][397] ([i915#9688]) +6 other tests skip [397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-2/igt@kms_psr@fbc-pr-primary-blt.html * igt@kms_psr@fbc-pr-sprite-blt: - shard-dg2: NOTRUN -> [SKIP][398] ([i915#1072] / [i915#9732]) +6 other tests skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-7/igt@kms_psr@fbc-pr-sprite-blt.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-dg2-9: NOTRUN -> [SKIP][399] ([i915#1072] / [i915#9732]) +13 other tests skip [399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-tglu: NOTRUN -> [SKIP][400] ([i915#9732]) +6 other tests skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-10/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@pr-cursor-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][401] ([i915#1072] / [i915#9732]) +14 other tests skip [401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-14/igt@kms_psr@pr-cursor-mmap-gtt.html * igt@kms_psr@psr-sprite-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][402] ([i915#9732]) +14 other tests skip [402]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-tglu-1/igt@kms_psr@psr-sprite-mmap-cpu.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-9: NOTRUN -> [SKIP][403] ([i915#9685]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg2-9/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html - shard-rkl: NOTRUN -> [SKIP][404] ([i915#9685]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@exhaust-fences: - shard-mtlp: NOTRUN -> [SKIP][405] ([i915#4235]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-mtlp-8/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-dg1: NOTRUN -> [SKIP][406] ([i915#5289]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-dg1-14/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][407] ([i915#5289]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/shard-rkl-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2-9: NOTRUN -> [SKI == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144489v1/index.html [-- Attachment #2: Type: text/html, Size: 110176 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2025-02-12 11:18 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-02-07 10:17 [PATCH 0/3] drm/i915/pch: small cleanups, refactors Jani Nikula 2025-02-07 10:17 ` [PATCH 1/3] drm/i915/pch: Make LPT LP a dedicated PCH type Jani Nikula 2025-02-11 18:12 ` Garg, Nemesa 2025-02-12 11:18 ` Jani Nikula 2025-02-07 10:17 ` [PATCH 2/3] drm/i915/pch: Hide PCH device IDs Jani Nikula 2025-02-11 18:03 ` Garg, Nemesa 2025-02-07 10:17 ` [PATCH 3/3] drm/i915/pch: Remove unused i915->pch_id Jani Nikula 2025-02-11 17:59 ` Garg, Nemesa 2025-02-07 15:28 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915/pch: small cleanups, refactors Patchwork 2025-02-07 15:28 ` ✗ Fi.CI.SPARSE: " Patchwork 2025-02-07 18:49 ` ✓ i915.CI.BAT: success " Patchwork 2025-02-08 6:02 ` ✗ i915.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox