drm/sun4i: hdmi: Move the mode_valid callback to the encoder
authorMaxime Ripard <maxime.ripard@free-electrons.com>
Wed, 20 Dec 2017 10:52:47 +0000 (11:52 +0100)
committerMaxime Ripard <maxime.ripard@free-electrons.com>
Wed, 20 Dec 2017 11:59:46 +0000 (12:59 +0100)
When attached to the connector, the mode_valid callback will only filter
the modes provided by the connector itself as part of its probe.

However, it will not be doing it when the mode is provided by the
userspace, which still might result in a broken configuration.

In order to enforce these constraints, move our mode_valid callback to the
encoder which doesn't have this behaviour.

Acked-by: Daniel Vetter <daniel@ffwll.ch>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
[maxime: Wrote the commit log in order to update the patch from the merged
 v3 to the v4 that was correct.]
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Link: https://patchwork.freedesktop.org/patch/msgid/0fa230a8-d01d-561a-f74f-6b4fd421255b@xs4all.nl
drivers/gpu/drm/sun4i/sun4i_hdmi_enc.c

index c12f9bd12904f830dfeba7637f04609d7d897c4e..500b6fb3e0284d2fdfc71265a64f0d5b51fe4f99 100644 (file)
@@ -175,11 +175,31 @@ static void sun4i_hdmi_mode_set(struct drm_encoder *encoder,
        writel(val, hdmi->base + SUN4I_HDMI_VID_TIMING_POL_REG);
 }
 
+static enum drm_mode_status sun4i_hdmi_mode_valid(struct drm_encoder *encoder,
+                                       const struct drm_display_mode *mode)
+{
+       struct sun4i_hdmi *hdmi = drm_encoder_to_sun4i_hdmi(encoder);
+       unsigned long rate = mode->clock * 1000;
+       unsigned long diff = rate / 200; /* +-0.5% allowed by HDMI spec */
+       long rounded_rate;
+
+       /* 165 MHz is the typical max pixelclock frequency for HDMI <= 1.2 */
+       if (rate > 165000000)
+               return MODE_CLOCK_HIGH;
+       rounded_rate = clk_round_rate(hdmi->tmds_clk, rate);
+       if (rounded_rate > 0 &&
+           max_t(unsigned long, rounded_rate, rate) -
+           min_t(unsigned long, rounded_rate, rate) < diff)
+               return MODE_OK;
+       return MODE_NOCLOCK;
+}
+
 static const struct drm_encoder_helper_funcs sun4i_hdmi_helper_funcs = {
        .atomic_check   = sun4i_hdmi_atomic_check,
        .disable        = sun4i_hdmi_disable,
        .enable         = sun4i_hdmi_enable,
        .mode_set       = sun4i_hdmi_mode_set,
+       .mode_valid     = sun4i_hdmi_mode_valid,
 };
 
 static const struct drm_encoder_funcs sun4i_hdmi_funcs = {
@@ -208,27 +228,8 @@ static int sun4i_hdmi_get_modes(struct drm_connector *connector)
        return ret;
 }
 
-static int sun4i_hdmi_mode_valid(struct drm_connector *connector,
-                                struct drm_display_mode *mode)
-{
-       struct sun4i_hdmi *hdmi = drm_connector_to_sun4i_hdmi(connector);
-       long rate = mode->clock * 1000;
-       long diff = rate / 200; /* +-0.5% allowed by HDMI spec */
-       long rounded_rate;
-
-       /* 165 MHz is the typical max pixelclock frequency for HDMI <= 1.2 */
-       if (rate > 165000000)
-               return MODE_CLOCK_HIGH;
-       rounded_rate = clk_round_rate(hdmi->tmds_clk, rate);
-       if (max(rounded_rate, rate) - min(rounded_rate, rate) < diff &&
-           rounded_rate > 0)
-               return MODE_OK;
-       return MODE_NOCLOCK;
-}
-
 static const struct drm_connector_helper_funcs sun4i_hdmi_connector_helper_funcs = {
        .get_modes      = sun4i_hdmi_get_modes,
-       .mode_valid     = sun4i_hdmi_mode_valid,
 };
 
 static enum drm_connector_status