int intel_psr2_sel_fetch_update(struct intel_atomic_state *state,
                                struct intel_crtc *crtc)
 {
+       struct drm_i915_private *dev_priv = to_i915(state->base.dev);
        struct intel_crtc_state *crtc_state = intel_atomic_get_new_crtc_state(state, crtc);
        struct drm_rect pipe_clip = { .x1 = 0, .y1 = -1, .x2 = INT_MAX, .y2 = -1 };
        struct intel_plane_state *new_plane_state, *old_plane_state;
                clip_area_update(&pipe_clip, &damaged_area);
        }
 
+       /*
+        * TODO: For now we are just using full update in case
+        * selective fetch area calculation fails. To optimize this we
+        * should identify cases where this happens and fix the area
+        * calculation for those.
+        */
+       if (pipe_clip.y1 == -1) {
+               drm_info_once(&dev_priv->drm,
+                             "Selective fetch area calculation failed in pipe %c\n",
+                             pipe_name(crtc->pipe));
+               full_update = true;
+       }
+
        if (full_update)
                goto skip_sel_fetch_set_loop;