OSDN Git Service

drm/i915/dg2: Add Wa_16011777198
authorMatt Roper <matthew.d.roper@intel.com>
Tue, 16 Nov 2021 17:48:16 +0000 (09:48 -0800)
committerMatt Roper <matthew.d.roper@intel.com>
Fri, 3 Dec 2021 05:38:18 +0000 (21:38 -0800)
Coarse power gating for render should not be enabled on some DG2
steppings.

Bspec: 52698
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
Reviewed-by: Clint Taylor <Clinton.A.Taylor@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20211116174818.2128062-4-matthew.d.roper@intel.com
drivers/gpu/drm/i915/gt/intel_rc6.c

index 43093dd..c3155ee 100644 (file)
@@ -117,10 +117,17 @@ static void gen11_rc6_enable(struct intel_rc6 *rc6)
                        GEN6_RC_CTL_RC6_ENABLE |
                        GEN6_RC_CTL_EI_MODE(1);
 
-       pg_enable =
-               GEN9_RENDER_PG_ENABLE |
-               GEN9_MEDIA_PG_ENABLE |
-               GEN11_MEDIA_SAMPLER_PG_ENABLE;
+       /* Wa_16011777198 - Render powergating must remain disabled */
+       if (IS_DG2_GRAPHICS_STEP(gt->i915, G10, STEP_A0, STEP_C0) ||
+           IS_DG2_GRAPHICS_STEP(gt->i915, G11, STEP_A0, STEP_B0))
+               pg_enable =
+                       GEN9_MEDIA_PG_ENABLE |
+                       GEN11_MEDIA_SAMPLER_PG_ENABLE;
+       else
+               pg_enable =
+                       GEN9_RENDER_PG_ENABLE |
+                       GEN9_MEDIA_PG_ENABLE |
+                       GEN11_MEDIA_SAMPLER_PG_ENABLE;
 
        if (GRAPHICS_VER(gt->i915) >= 12) {
                for (i = 0; i < I915_MAX_VCS; i++)