Add the primary plane state to the legacy modeset atomic state and use
it when configuring the primary plane in __intel_set_mode(). This is a
first step towards merging the flip path in intel_crtc_set_config() and
__intel_set_mode().

v2: Set crtc to NULL if fb is NULL. (Maarten)

Signed-off-by: Ander Conselvan de Oliveira 
<[email protected]>
---
 drivers/gpu/drm/i915/intel_display.c | 83 ++++++++++++++++++++++++++++++------
 1 file changed, 71 insertions(+), 12 deletions(-)

diff --git a/drivers/gpu/drm/i915/intel_display.c 
b/drivers/gpu/drm/i915/intel_display.c
index 902870a..382b621 100644
--- a/drivers/gpu/drm/i915/intel_display.c
+++ b/drivers/gpu/drm/i915/intel_display.c
@@ -9622,6 +9622,41 @@ mode_fits_in_fbdev(struct drm_device *dev,
 #endif
 }
 
+static int intel_modeset_setup_plane_state(struct drm_atomic_state *state,
+                                          struct drm_crtc *crtc,
+                                          struct drm_display_mode *mode,
+                                          struct drm_framebuffer *fb,
+                                          int x, int y)
+{
+       struct drm_plane_state *plane_state;
+       int hdisplay, vdisplay;
+       int ret;
+
+       plane_state = drm_atomic_get_plane_state(state, crtc->primary);
+       if (IS_ERR(plane_state))
+               return PTR_ERR(plane_state);
+
+       if (mode)
+               drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
+       else
+               hdisplay = vdisplay = 0;
+
+       ret = drm_atomic_set_crtc_for_plane(plane_state, fb ? crtc : NULL);
+       if (ret)
+               return ret;
+       drm_atomic_set_fb_for_plane(plane_state, fb);
+       plane_state->crtc_x = 0;
+       plane_state->crtc_y = 0;
+       plane_state->crtc_w = hdisplay;
+       plane_state->crtc_h = vdisplay;
+       plane_state->src_x = x << 16;
+       plane_state->src_y = y << 16;
+       plane_state->src_w = hdisplay << 16;
+       plane_state->src_h = vdisplay << 16;
+
+       return 0;
+}
+
 bool intel_get_load_detect_pipe(struct drm_connector *connector,
                                struct drm_display_mode *mode,
                                struct intel_load_detect_pipe *old,
@@ -9764,6 +9799,10 @@ retry:
                goto fail;
        }
 
+       ret = intel_modeset_setup_plane_state(state, crtc, mode, fb, 0, 0);
+       if (ret)
+               goto fail;
+
        if (intel_set_mode(crtc, mode, 0, 0, fb, state)) {
                DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
                if (old->release_fb)
@@ -9803,6 +9842,7 @@ void intel_release_load_detect_pipe(struct drm_connector 
*connector,
        struct drm_atomic_state *state;
        struct drm_connector_state *connector_state;
        struct intel_crtc_state *crtc_state;
+       int ret;
 
        DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
                      connector->base.id, connector->name,
@@ -9832,6 +9872,11 @@ void intel_release_load_detect_pipe(struct drm_connector 
*connector,
 
                crtc_state->base.enable = false;
 
+               ret = intel_modeset_setup_plane_state(state, crtc, NULL, NULL,
+                                                     0, 0);
+               if (ret)
+                       goto fail;
+
                intel_set_mode(crtc, NULL, 0, 0, NULL, state);
 
                drm_atomic_state_free(state);
@@ -12182,6 +12227,8 @@ static int __intel_set_mode(struct drm_crtc 
*modeset_crtc,
        struct intel_crtc *intel_crtc;
        struct drm_crtc *crtc;
        struct drm_crtc_state *crtc_state;
+       struct drm_plane *plane;
+       struct drm_plane_state *plane_state;
        int ret = 0;
        int i;
 
@@ -12233,20 +12280,24 @@ static int __intel_set_mode(struct drm_crtc 
*modeset_crtc,
 
        modeset_update_crtc_power_domains(state);
 
-       if (pipe_config->base.enable && needs_modeset(&pipe_config->base)) {
-               struct drm_plane *primary;
-               int vdisplay, hdisplay;
-
-               intel_crtc = to_intel_crtc(modeset_crtc);
-               primary = intel_crtc->base.primary;
+       for_each_plane_in_state(state, plane, plane_state, i) {
+               if (WARN_ON(plane != modeset_crtc->primary))
+                       continue;
 
-               drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
+               /* Primary plane is disabled in intel_crtc_disable() */
+               if (!pipe_config->base.enable)
+                       continue;
 
-               ret = drm_plane_helper_update(primary, &intel_crtc->base,
-                                             fb, 0, 0,
-                                             hdisplay, vdisplay,
-                                             x << 16, y << 16,
-                                             hdisplay << 16, vdisplay << 16);
+               ret = drm_plane_helper_update(plane, plane_state->crtc,
+                                             plane_state->fb,
+                                             plane_state->crtc_x,
+                                             plane_state->crtc_y,
+                                             plane_state->crtc_w,
+                                             plane_state->crtc_h,
+                                             plane_state->src_x,
+                                             plane_state->src_y,
+                                             plane_state->src_w,
+                                             plane_state->src_h);
                WARN_ON(ret != 0);
        }
 
@@ -12372,6 +12423,9 @@ void intel_crtc_restore_mode(struct drm_crtc *crtc)
                crtc_state->base.enable = intel_crtc->new_enabled;
        }
 
+       intel_modeset_setup_plane_state(state, crtc, &crtc->mode,
+                                       crtc->primary->fb, crtc->x, crtc->y);
+
        intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, crtc->primary->fb,
                       state);
 
@@ -12746,6 +12800,11 @@ static int intel_crtc_set_config(struct drm_mode_set 
*set)
        if (ret)
                goto fail;
 
+       ret = intel_modeset_setup_plane_state(state, set->crtc, set->mode,
+                                             set->fb, set->x, set->y);
+       if (ret)
+               goto fail;
+
        /* Compute whether we need a full modeset, only an fb base update or no
         * change at all. In the future we might also check whether only the
         * mode changed, e.g. for LVDS where we only change the panel fitter in
-- 
2.1.0

_______________________________________________
Intel-gfx mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

Reply via email to