OSDN Git Service

drm/i915/psr: Implement Wa_14014971492
authorJouni Högander <jouni.hogander@intel.com>
Tue, 24 Jan 2023 10:26:35 +0000 (12:26 +0200)
committerJouni Högander <jouni.hogander@intel.com>
Thu, 26 Jan 2023 11:54:05 +0000 (13:54 +0200)
Implement Wa_14014971492 and apply it for affected platforms.

Bspec: 52890, 54369, 55378, 66624

v2: Adjust platforms where applied

Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Mika Kahola <mika.kahola@intel.com>
Cc: José Roberto de Souza <jose.souza@intel.com>
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230124102636.2567292-2-jouni.hogander@intel.com
drivers/gpu/drm/i915/display/intel_psr.c

index 7d4a15a..7a72e15 100644 (file)
@@ -1842,6 +1842,12 @@ int intel_psr2_sel_fetch_update(struct intel_atomic_state *state,
        if (full_update)
                goto skip_sel_fetch_set_loop;
 
+       /* Wa_14014971492 */
+       if ((IS_MTL_DISPLAY_STEP(dev_priv, STEP_A0, STEP_B0) ||
+            IS_ALDERLAKE_P(dev_priv) || IS_TIGERLAKE(dev_priv)) &&
+           crtc_state->splitter.enable)
+               pipe_clip.y1 = 0;
+
        ret = drm_atomic_add_affected_planes(&state->base, &crtc->base);
        if (ret)
                return ret;