1 From 4ec4cfbf63a697a5b1c82b400d28afd0347d555a Mon Sep 17 00:00:00 2001
2 From: Maxime Ripard <maxime@cerno.tech>
3 Date: Fri, 8 Apr 2022 10:06:11 +0200
4 Subject: [PATCH] clk: Take into account uncached clocks in
7 clk_set_rate_range() will use the last requested rate for the clock when
8 it calls into the driver set_rate hook.
10 However, if CLK_GET_RATE_NOCACHE is set on that clock, the last
11 requested rate might not be matching the current rate of the clock. In
12 such a case, let's read out the rate from the hardware and use that in
15 Tested-by: Alexander Stein <alexander.stein@ew.tq-group.com> # imx8mp
16 Tested-by: Marek Szyprowski <m.szyprowski@samsung.com> # exynos4210, meson g12b
17 Signed-off-by: Maxime Ripard <maxime@cerno.tech>
19 drivers/clk/clk.c | 6 +++++-
20 drivers/clk/clk_test.c | 28 ++++++++++++++++++++++++++++
21 2 files changed, 33 insertions(+), 1 deletion(-)
23 --- a/drivers/clk/clk.c
24 +++ b/drivers/clk/clk.c
25 @@ -2379,6 +2379,10 @@ static int clk_set_rate_range_nolock(str
29 + rate = clk->core->req_rate;
30 + if (clk->core->flags & CLK_GET_RATE_NOCACHE)
31 + rate = clk_core_get_rate_recalc(clk->core);
34 * Since the boundaries have been changed, let's give the
35 * opportunity to the provider to adjust the clock rate based on
36 @@ -2396,7 +2400,7 @@ static int clk_set_rate_range_nolock(str
37 * - the determine_rate() callback does not really check for
38 * this corner case when determining the rate
40 - rate = clamp(clk->core->req_rate, min, max);
41 + rate = clamp(rate, min, max);
42 ret = clk_core_set_rate_nolock(clk->core, rate);
44 /* rollback the changes */
45 --- a/drivers/clk/clk_test.c
46 +++ b/drivers/clk/clk_test.c
47 @@ -362,9 +362,37 @@ static void clk_test_uncached_set_range(
48 KUNIT_EXPECT_LE(test, rate, DUMMY_CLOCK_RATE_2);
52 + * Test that for an uncached clock, clk_set_rate_range() will work
53 + * properly if the rate has changed in hardware.
55 + * In this case, it means that if the rate wasn't initially in the range
56 + * we're trying to set, but got changed at some point into the range
57 + * without the kernel knowing about it, its rate shouldn't be affected.
59 +static void clk_test_uncached_updated_rate_set_range(struct kunit *test)
61 + struct clk_dummy_context *ctx = test->priv;
62 + struct clk_hw *hw = &ctx->hw;
63 + struct clk *clk = hw->clk;
66 + ctx->rate = DUMMY_CLOCK_RATE_1 + 1000;
67 + KUNIT_ASSERT_EQ(test,
68 + clk_set_rate_range(clk,
70 + DUMMY_CLOCK_RATE_2),
73 + rate = clk_get_rate(clk);
74 + KUNIT_ASSERT_GT(test, rate, 0);
75 + KUNIT_EXPECT_EQ(test, rate, DUMMY_CLOCK_RATE_1 + 1000);
78 static struct kunit_case clk_uncached_test_cases[] = {
79 KUNIT_CASE(clk_test_uncached_get_rate),
80 KUNIT_CASE(clk_test_uncached_set_range),
81 + KUNIT_CASE(clk_test_uncached_updated_rate_set_range),