]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drm/omap: Move DISPC timing checks to CRTC .mode_valid() operation
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Wed, 19 Sep 2018 21:17:42 +0000 (00:17 +0300)
committerTomi Valkeinen <tomi.valkeinen@ti.com>
Mon, 18 Mar 2019 09:42:12 +0000 (11:42 +0200)
The DISPC timings checks relate to the CRTC, but they're performed in
the encoder and connector .atomic_check() and .mode_valid() operations.
Move them to the CRTC .mode_valid() operation.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Tested-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
drivers/gpu/drm/omapdrm/omap_connector.c
drivers/gpu/drm/omapdrm/omap_crtc.c
drivers/gpu/drm/omapdrm/omap_encoder.c

index e01e4cf61ae1a378004e9d1455393d958f1231e1..99ca5b3eaebb2e0f87415bf9b08557e075e2b252 100644 (file)
@@ -245,8 +245,6 @@ static int omap_connector_mode_valid(struct drm_connector *connector,
                                 struct drm_display_mode *mode)
 {
        struct omap_connector *omap_connector = to_omap_connector(connector);
-       enum omap_channel channel = omap_connector->output->dispc_channel;
-       struct omap_drm_private *priv = connector->dev->dev_private;
        struct omap_dss_device *dssdev;
        struct videomode vm = {0};
        struct drm_device *dev = connector->dev;
@@ -256,10 +254,6 @@ static int omap_connector_mode_valid(struct drm_connector *connector,
        drm_display_mode_to_videomode(mode, &vm);
        mode->vrefresh = drm_mode_vrefresh(mode);
 
-       r = priv->dispc_ops->mgr_check_timings(priv->dispc, channel, &vm);
-       if (r)
-               goto done;
-
        for (dssdev = omap_connector->output; dssdev; dssdev = dssdev->next) {
                if (!dssdev->ops->check_timings)
                        continue;
index d99e24dcc0bff125dff5cc857d13d24a735c2518..ae399435346b46725b44f4d0c06002c0017e2db6 100644 (file)
@@ -390,6 +390,15 @@ static enum drm_mode_status omap_crtc_mode_valid(struct drm_crtc *crtc,
                                        const struct drm_display_mode *mode)
 {
        struct omap_drm_private *priv = crtc->dev->dev_private;
+       struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
+       struct videomode vm = {0};
+       int r;
+
+       drm_display_mode_to_videomode(mode, &vm);
+       r = priv->dispc_ops->mgr_check_timings(priv->dispc, omap_crtc->channel,
+                                              &vm);
+       if (r)
+               return r;
 
        /* Check for bandwidth limit */
        if (priv->max_bandwidth) {
index 1f4172f653b9e9b99b067f9df9bfee41c0c9e178..623154bc44bb385d47ddbd379889794b8be19c9b 100644 (file)
@@ -206,19 +206,13 @@ static int omap_encoder_atomic_check(struct drm_encoder *encoder,
                                     struct drm_connector_state *conn_state)
 {
        struct omap_encoder *omap_encoder = to_omap_encoder(encoder);
-       enum omap_channel channel = omap_encoder->output->dispc_channel;
        struct drm_device *dev = encoder->dev;
-       struct omap_drm_private *priv = dev->dev_private;
        struct omap_dss_device *dssdev;
        struct videomode vm = { 0 };
        int ret;
 
        drm_display_mode_to_videomode(&crtc_state->mode, &vm);
 
-       ret = priv->dispc_ops->mgr_check_timings(priv->dispc, channel, &vm);
-       if (ret)
-               goto done;
-
        for (dssdev = omap_encoder->output; dssdev; dssdev = dssdev->next) {
                if (!dssdev->ops->check_timings)
                        continue;