On Fri, Oct 06, 2023 at 09:31:01AM +0100, Tvrtko Ursulin wrote: > From: Tvrtko Ursulin <tvrtko.ursulin@xxxxxxxxx> > > It is not our policy to keep pre-production hardware support for this long > so I guess this one was just forgotten. This is about detecting pre-prod hw, not supporting it. I think keeping the detection forever is a good idea since otherwise we may end up mistakenly debugging pre-prod hw without even realizing it. > > Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@xxxxxxxxx> > --- > drivers/gpu/drm/i915/i915_driver.c | 1 - > drivers/gpu/drm/i915/i915_drv.h | 2 -- > 2 files changed, 3 deletions(-) > > diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c > index ccbb2834cde0..78a42c8a8509 100644 > --- a/drivers/gpu/drm/i915/i915_driver.c > +++ b/drivers/gpu/drm/i915/i915_driver.c > @@ -175,7 +175,6 @@ static void intel_detect_preproduction_hw(struct drm_i915_private *dev_priv) > { > bool pre = false; > > - pre |= IS_HASWELL_EARLY_SDV(dev_priv); > pre |= IS_SKYLAKE(dev_priv) && INTEL_REVID(dev_priv) < 0x6; > pre |= IS_BROXTON(dev_priv) && INTEL_REVID(dev_priv) < 0xA; > pre |= IS_KABYLAKE(dev_priv) && INTEL_REVID(dev_priv) < 0x1; > diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h > index cb60fc9cf873..9d493ff1685a 100644 > --- a/drivers/gpu/drm/i915/i915_drv.h > +++ b/drivers/gpu/drm/i915/i915_drv.h > @@ -590,8 +590,6 @@ IS_SUBPLATFORM(const struct drm_i915_private *i915, > IS_SUBPLATFORM(i915, INTEL_ALDERLAKE_P, INTEL_SUBPLATFORM_RPL) > #define IS_RAPTORLAKE_U(i915) \ > IS_SUBPLATFORM(i915, INTEL_ALDERLAKE_P, INTEL_SUBPLATFORM_RPLU) > -#define IS_HASWELL_EARLY_SDV(i915) (IS_HASWELL(i915) && \ > - (INTEL_DEVID(i915) & 0xFF00) == 0x0C00) > #define IS_BROADWELL_ULT(i915) \ > IS_SUBPLATFORM(i915, INTEL_BROADWELL, INTEL_SUBPLATFORM_ULT) > #define IS_BROADWELL_ULX(i915) \ > -- > 2.39.2 -- Ville Syrjälä Intel