drm/vc4: Make sure we don't end up with a core clock too high
authorMaxime Ripard <maxime@cerno.tech>
Fri, 25 Mar 2022 16:09:41 +0000 (17:09 +0100)
committerPhil Elwell <8911409+pelwell@users.noreply.github.com>
Fri, 22 Apr 2022 09:17:27 +0000 (10:17 +0100)
Following the clock rate range improvements to the clock framework,
trying to set a disjoint range on a clock will now result in an error.

Thus, we can't set a minimum rate higher than the maximum reported by
the firmware, or clk_set_min_rate() will fail.

Thus we need to clamp the rate we are about to ask for to the maximum
rate possible on that clock.

Signed-off-by: Maxime Ripard <maxime@cerno.tech>
drivers/gpu/drm/vc4/vc4_kms.c

index a41d3c8c04589318bc123eb3c205b9701c4a6abb..e33ce608d17474be2c53fddef30f94a419a9513a 100644 (file)
@@ -354,6 +354,7 @@ static void vc4_atomic_commit_tail(struct drm_atomic_state *state)
        struct vc4_hvs_state *new_hvs_state;
        struct drm_crtc *crtc;
        struct vc4_hvs_state *old_hvs_state;
+       unsigned long max_clock_rate = clk_get_max_rate(hvs->core_clk);
        unsigned int channel;
        int i;
 
@@ -397,8 +398,8 @@ static void vc4_atomic_commit_tail(struct drm_atomic_state *state)
        if (vc4->hvs && vc4->hvs->hvs5) {
                unsigned long state_rate = max(old_hvs_state->core_clock_rate,
                                               new_hvs_state->core_clock_rate);
-               unsigned long core_rate = max_t(unsigned long,
-                                               500000000, state_rate);
+               unsigned long core_rate = clamp_t(unsigned long, state_rate,
+                                                 500000000, max_clock_rate);
 
                WARN_ON(clk_set_min_rate(hvs->core_clk, core_rate));
        }
@@ -427,10 +428,13 @@ static void vc4_atomic_commit_tail(struct drm_atomic_state *state)
        drm_atomic_helper_cleanup_planes(dev, state);
 
        if (vc4->hvs && vc4->hvs->hvs5) {
-               drm_dbg(dev, "Running the core clock at %lu Hz\n",
-                       new_hvs_state->core_clock_rate);
+               unsigned long core_rate = min_t(unsigned long,
+                                              max_clock_rate,
+                                              new_hvs_state->core_clock_rate);
+
+               drm_dbg(dev, "Running the core clock at %lu Hz\n", core_rate);
 
-               WARN_ON(clk_set_min_rate(hvs->core_clk, new_hvs_state->core_clock_rate));
+               WARN_ON(clk_set_min_rate(hvs->core_clk, core_rate));
 
                drm_dbg(dev, "Core clock actual rate: %lu Hz\n",
                        clk_get_rate(hvs->core_clk));