drm/i915/sdvo: Fail gracefully if the TV dotclock is out of range
authorVille Syrjälä <ville.syrjala@linux.intel.com>
Wed, 5 Jul 2023 20:21:16 +0000 (23:21 +0300)
committerVille Syrjälä <ville.syrjala@linux.intel.com>
Thu, 24 Aug 2023 12:24:43 +0000 (15:24 +0300)
Instead of warning and continuing with bogus state when the
requested dotclock isn't acceptable just print some debug
spew and fail gracefully.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230705202122.17915-8-ville.syrjala@linux.intel.com
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
drivers/gpu/drm/i915/display/intel_sdvo.c

index 0fc403f4be2d1769b500a7582b3342592a8f824f..a1fbeac953479b8fa42304fa96b93a8adeb47e03 100644 (file)
@@ -1269,7 +1269,7 @@ intel_sdvo_get_preferred_input_mode(struct intel_sdvo *intel_sdvo,
        return true;
 }
 
-static void i9xx_adjust_sdvo_tv_clock(struct intel_crtc_state *pipe_config)
+static int i9xx_adjust_sdvo_tv_clock(struct intel_crtc_state *pipe_config)
 {
        struct drm_i915_private *dev_priv = to_i915(pipe_config->uapi.crtc->dev);
        unsigned int dotclock = pipe_config->hw.adjusted_mode.crtc_clock;
@@ -1292,11 +1292,14 @@ static void i9xx_adjust_sdvo_tv_clock(struct intel_crtc_state *pipe_config)
                clock->m1 = 12;
                clock->m2 = 8;
        } else {
-               drm_WARN(&dev_priv->drm, 1,
-                        "SDVO TV clock out of range: %i\n", dotclock);
+               drm_dbg_kms(&dev_priv->drm,
+                           "SDVO TV clock out of range: %i\n", dotclock);
+               return -EINVAL;
        }
 
        pipe_config->clock_set = true;
+
+       return 0;
 }
 
 static bool intel_has_hdmi_sink(struct intel_sdvo_connector *intel_sdvo_connector,
@@ -1414,8 +1417,13 @@ static int intel_sdvo_compute_config(struct intel_encoder *encoder,
                                               conn_state);
 
        /* Clock computation needs to happen after pixel multiplier. */
-       if (IS_TV(intel_sdvo_connector))
-               i9xx_adjust_sdvo_tv_clock(pipe_config);
+       if (IS_TV(intel_sdvo_connector)) {
+               int ret;
+
+               ret = i9xx_adjust_sdvo_tv_clock(pipe_config);
+               if (ret)
+                       return ret;
+       }
 
        if (conn_state->picture_aspect_ratio)
                adjusted_mode->picture_aspect_ratio =