From: Matt Roper Date: Tue, 24 May 2022 23:59:06 +0000 (-0700) Subject: drm/i915/hwconfig: Future-proof platform checks X-Git-Tag: v6.1-rc5~176^2~23^2~126 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=16e214d4aef2d600ef94e845530a28ce795b8fcc;p=platform%2Fkernel%2Flinux-starfive.git drm/i915/hwconfig: Future-proof platform checks PVC also has a hwconfig table. Actually the current expectation is that all future platforms will have hwconfig, so let's just change the condition to an IP version check so that we don't need to keep updating this for each new platform that shows up. Cc: John Harrison Cc: Radhakrishna Sripada Signed-off-by: Matt Roper Reviewed-by: John Harrison Link: https://patchwork.freedesktop.org/patch/msgid/20220524235906.529771-1-matthew.d.roper@intel.com --- diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_hwconfig.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_hwconfig.c index 5aaa394..4781fcc 100644 --- a/drivers/gpu/drm/i915/gt/uc/intel_guc_hwconfig.c +++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_hwconfig.c @@ -96,7 +96,7 @@ static bool has_table(struct drm_i915_private *i915) { if (IS_ALDERLAKE_P(i915) && !IS_ADLP_N(i915)) return true; - if (IS_DG2(i915)) + if (GRAPHICS_VER_FULL(i915) >= IP_VER(12, 55)) return true; return false;