drm/i915/pvc: read fuses for link copy engines
authorLucas De Marchi <lucas.demarchi@intel.com>
Thu, 5 May 2022 21:38:12 +0000 (14:38 -0700)
committerMatt Roper <matthew.d.roper@intel.com>
Tue, 10 May 2022 22:33:13 +0000 (15:33 -0700)
The new Link Copy engines in PVC may be fused off according to the
mslice_mask. Each bit of the MEML3_EN_MASK we read from the
GEN10_MIRROR_FUSE3 register disables a pair of link copy engines.

v2 (Tvrtko):
 - Minor cosmetic changes: s/u8/unsigned long/, use instance local
   variable.  (Tvrtko)

Bspec: 44483
Cc: Matt Roper <matthew.d.roper@intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
Reviewed-by: José Roberto de Souza <jose.souza@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220505213812.3979301-13-matthew.d.roper@intel.com
drivers/gpu/drm/i915/gt/intel_engine_cs.c

index c6e93db..1adbf34 100644 (file)
@@ -686,6 +686,34 @@ static void engine_mask_apply_compute_fuses(struct intel_gt *gt)
        }
 }
 
+static void engine_mask_apply_copy_fuses(struct intel_gt *gt)
+{
+       struct drm_i915_private *i915 = gt->i915;
+       struct intel_gt_info *info = &gt->info;
+       unsigned long meml3_mask;
+       unsigned long quad;
+
+       meml3_mask = intel_uncore_read(gt->uncore, GEN10_MIRROR_FUSE3);
+       meml3_mask = REG_FIELD_GET(GEN12_MEML3_EN_MASK, meml3_mask);
+
+       /*
+        * Link Copy engines may be fused off according to meml3_mask. Each
+        * bit is a quad that houses 2 Link Copy and two Sub Copy engines.
+        */
+       for_each_clear_bit(quad, &meml3_mask, GEN12_MAX_MSLICES) {
+               unsigned int instance = quad * 2 + 1;
+               intel_engine_mask_t mask = GENMASK(_BCS(instance + 1),
+                                                  _BCS(instance));
+
+               if (mask & info->engine_mask) {
+                       drm_dbg(&i915->drm, "bcs%u fused off\n", instance);
+                       drm_dbg(&i915->drm, "bcs%u fused off\n", instance + 1);
+
+                       info->engine_mask &= ~mask;
+               }
+       }
+}
+
 /*
  * Determine which engines are fused off in our particular hardware.
  * Note that we have a catch-22 situation where we need to be able to access
@@ -768,6 +796,7 @@ static intel_engine_mask_t init_engine_mask(struct intel_gt *gt)
        GEM_BUG_ON(vebox_mask != VEBOX_MASK(gt));
 
        engine_mask_apply_compute_fuses(gt);
+       engine_mask_apply_copy_fuses(gt);
 
        return info->engine_mask;
 }