.crtc = crtc,
                .enable = crtc->enabled,
        };
-       const struct drm_rect clip = {
-               .x2 = crtc->mode.hdisplay,
-               .y2 = crtc->mode.vdisplay,
-       };
+       struct drm_rect clip = {};
        int ret;
 
+       if (crtc->enabled)
+               drm_mode_get_hv_timing(&crtc->mode,
+                                      &clip.x2, &clip.y2);
+
        ret = drm_atomic_helper_check_plane_state(&state, &crtc_state, &clip, 0,
                                                  INT_MAX, true, false);
        if (ret)
 
                .crtc = crtc,
                .enable = crtc->enabled,
        };
-       const struct drm_rect clip = {
-               .x2 = crtc->mode.hdisplay,
-               .y2 = crtc->mode.vdisplay,
-       };
+       struct drm_rect clip = {};
        int ret;
 
        trace_armada_ovl_plane_update(plane, crtc, fb,
                                 crtc_x, crtc_y, crtc_w, crtc_h,
                                 src_x, src_y, src_w, src_h);
 
+       if (crtc->enabled)
+               drm_mode_get_hv_timing(&crtc->mode,
+                                      &clip.x2, &clip.y2);
+
        ret = drm_atomic_helper_check_plane_state(&state, &crtc_state, &clip, 0,
                                                  INT_MAX, true, false);
        if (ret)