intel_de_write_fw(dev_priv, SEL_FETCH_CUR_CTL(pipe), ctl);
 
-       intel_de_write(dev_priv, PIPE_SRCSZ_ERLY_TPT(pipe),
-                      PIPESRC_HEIGHT(et_y_position));
+       intel_de_write(dev_priv, CURPOS_ERLY_TPT(dev_priv, pipe),
+                      CURSOR_POS_Y(et_y_position));
 }
 
 static void i9xx_cursor_update_sel_fetch_arm(struct intel_plane *plane,
 
        crtc_state->psr2_man_track_ctl = val;
 }
 
-static u32
-psr2_pipe_srcsz_early_tpt_calc(struct intel_crtc_state *crtc_state,
-                              bool full_update, bool cursor_in_su_area)
+static u32 psr2_pipe_srcsz_early_tpt_calc(struct intel_crtc_state *crtc_state,
+                                         bool full_update)
 {
        int width, height;
 
        if (!crtc_state->enable_psr2_su_region_et || full_update)
                return 0;
 
-       if (!cursor_in_su_area)
-               return PIPESRC_WIDTH(0) |
-                       PIPESRC_HEIGHT(drm_rect_height(&crtc_state->pipe_src));
-
        width = drm_rect_width(&crtc_state->psr2_su_area);
        height = drm_rect_height(&crtc_state->psr2_su_area);
 
 skip_sel_fetch_set_loop:
        psr2_man_trk_ctl_calc(crtc_state, full_update);
        crtc_state->pipe_srcsz_early_tpt =
-               psr2_pipe_srcsz_early_tpt_calc(crtc_state, full_update,
-                                              cursor_in_su_area);
+               psr2_pipe_srcsz_early_tpt_calc(crtc_state, full_update);
        return 0;
 }