]> git.baikalelectronics.ru Git - kernel.git/commitdiff
drm/i915/xehp: Define multicast register ranges
authorMatt Roper <matthew.d.roper@intel.com>
Wed, 14 Jul 2021 03:15:00 +0000 (20:15 -0700)
committerMatt Roper <matthew.d.roper@intel.com>
Fri, 23 Jul 2021 17:28:16 +0000 (10:28 -0700)
Since we can't steer multicast register reads during ring-based
workaround verification, we need to define the multicast ranges where
failure to steer could potentially cause us to read back from a
fused-off register instance.

As with gen12, we can ignore the multicast ranges that the bspec
describes as 'SQIDI' since all instances of those registers will always
be present and we'll always be able to read back a workaround value that
was written with multicast.

Bspec: 66534
Cc: José Roberto de Souza <jose.souza@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/20210714031540.3539704-11-matthew.d.roper@intel.com
drivers/gpu/drm/i915/gt/intel_workarounds.c

index b84d1d816898f18a1b903a73c58bff5ec73ab0dd..3aa5ce3cda8b02b647fcdfbb69dee3ecd1ba32df 100644 (file)
@@ -1984,12 +1984,30 @@ static const struct mcr_range mcr_ranges_gen12[] = {
        {},
 };
 
+static const struct mcr_range mcr_ranges_xehp[] = {
+       { .start =  0x4000, .end =  0x4aff },
+       { .start =  0x5200, .end =  0x52ff },
+       { .start =  0x5400, .end =  0x7fff },
+       { .start =  0x8140, .end =  0x815f },
+       { .start =  0x8c80, .end =  0x8dff },
+       { .start =  0x94d0, .end =  0x955f },
+       { .start =  0x9680, .end =  0x96ff },
+       { .start =  0xb000, .end =  0xb3ff },
+       { .start =  0xc800, .end =  0xcfff },
+       { .start =  0xd800, .end =  0xd8ff },
+       { .start =  0xdc00, .end =  0xffff },
+       { .start = 0x17000, .end = 0x17fff },
+       { .start = 0x24a00, .end = 0x24a7f },
+};
+
 static bool mcr_range(struct drm_i915_private *i915, u32 offset)
 {
        const struct mcr_range *mcr_ranges;
        int i;
 
-       if (GRAPHICS_VER(i915) >= 12)
+       if (GRAPHICS_VER_FULL(i915) >= IP_VER(12, 50))
+               mcr_ranges = mcr_ranges_xehp;
+       else if (GRAPHICS_VER(i915) >= 12)
                mcr_ranges = mcr_ranges_gen12;
        else if (GRAPHICS_VER(i915) >= 8)
                mcr_ranges = mcr_ranges_gen8;