drm/i915/display: Do not use stolen on MTL
authorNirmoy Das <nirmoy.das@intel.com>
Thu, 13 Jul 2023 15:01:42 +0000 (17:01 +0200)
committerNirmoy Das <nirmoy.das@intel.com>
Mon, 17 Jul 2023 09:35:24 +0000 (11:35 +0200)
Use smem on MTL due to a HW bug in MTL that prevents
reading from stolen memory using LMEM BAR.

v2 and v3: improve stolen skip detection(Andrzej)

Cc: Oak Zeng <oak.zeng@intel.com>
Cc: Jani Nikula <jani.nikula@linux.intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Andi Shyti <andi.shyti@linux.intel.com>
Cc: Andrzej Hajda <andrzej.hajda@intel.com>
Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
Reviewed-by: Oak Zeng <oak.zeng@intel.com>
Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com>
Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230713150142.12700-2-nirmoy.das@intel.com
drivers/gpu/drm/i915/display/intel_fbdev.c
drivers/gpu/drm/i915/display/intel_overlay.c

index 80c3f88..e75852f 100644 (file)
@@ -182,8 +182,10 @@ static int intelfb_alloc(struct drm_fb_helper *helper,
                 * If the FB is too big, just don't use it since fbdev is not very
                 * important and we should probably use that space with FBC or other
                 * features.
+                *
+                * Also skip stolen on MTL as Wa_22018444074 mitigation.
                 */
-               if (size * 2 < dev_priv->dsm.usable_size)
+               if (!(IS_METEORLAKE(dev_priv)) && size * 2 < dev_priv->dsm.usable_size)
                        obj = i915_gem_object_create_stolen(dev_priv, size);
                if (IS_ERR(obj))
                        obj = i915_gem_object_create_shmem(dev_priv, size);
index d6fe2bb..09c1aa1 100644 (file)
@@ -1348,11 +1348,12 @@ out_unlock:
 static int get_registers(struct intel_overlay *overlay, bool use_phys)
 {
        struct drm_i915_private *i915 = overlay->i915;
-       struct drm_i915_gem_object *obj;
+       struct drm_i915_gem_object *obj = ERR_PTR(-ENODEV);
        struct i915_vma *vma;
        int err;
 
-       obj = i915_gem_object_create_stolen(i915, PAGE_SIZE);
+       if (!IS_METEORLAKE(i915)) /* Wa_22018444074 */
+               obj = i915_gem_object_create_stolen(i915, PAGE_SIZE);
        if (IS_ERR(obj))
                obj = i915_gem_object_create_internal(i915, PAGE_SIZE);
        if (IS_ERR(obj))