clk: divider: fix incorrect usage of container_of
authorJerome Brunet <jbrunet@baylibre.com>
Thu, 21 Dec 2017 16:30:54 +0000 (17:30 +0100)
committerStephen Boyd <sboyd@codeaurora.org>
Thu, 28 Dec 2017 23:16:04 +0000 (15:16 -0800)
divider_recalc_rate() is an helper function used by clock divider of
different types, so the structure containing the 'hw' pointer is not
always a 'struct clk_divider'

At the following line:
> div = _get_div(table, val, flags, divider->width);

in several cases, the value of 'divider->width' is garbage as the actual
structure behind this memory is not a 'struct clk_divider'

Fortunately, this width value is used by _get_val() only when
CLK_DIVIDER_MAX_AT_ZERO flag is set. This has never been the case so
far when the structure is not a 'struct clk_divider'. This is probably
why we did not notice this bug before

Fixes: afe76c8fd030 ("clk: allow a clk divider with max divisor when zero")
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
Acked-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Acked-by: Sylvain Lemieux <slemieux.tyco@gmail.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
drivers/clk/clk-divider.c
drivers/clk/hisilicon/clkdivider-hi6220.c
drivers/clk/nxp/clk-lpc32xx.c
drivers/clk/qcom/clk-regmap-divider.c
drivers/clk/sunxi-ng/ccu_div.c
drivers/gpu/drm/msm/dsi/pll/dsi_pll_14nm.c
drivers/rtc/rtc-ac100.c
include/linux/clk-provider.h

index 4ed516cb72764a18a29f8cd77efcc81aa7087c47..b49942b9fe50f69cb4ed4f549e4d0f0dbd87f6ce 100644 (file)
@@ -118,12 +118,11 @@ static unsigned int _get_val(const struct clk_div_table *table,
 unsigned long divider_recalc_rate(struct clk_hw *hw, unsigned long parent_rate,
                                  unsigned int val,
                                  const struct clk_div_table *table,
-                                 unsigned long flags)
+                                 unsigned long flags, unsigned long width)
 {
-       struct clk_divider *divider = to_clk_divider(hw);
        unsigned int div;
 
-       div = _get_div(table, val, flags, divider->width);
+       div = _get_div(table, val, flags, width);
        if (!div) {
                WARN(!(flags & CLK_DIVIDER_ALLOW_ZERO),
                        "%s: Zero divisor and CLK_DIVIDER_ALLOW_ZERO not set\n",
@@ -145,7 +144,7 @@ static unsigned long clk_divider_recalc_rate(struct clk_hw *hw,
        val &= div_mask(divider->width);
 
        return divider_recalc_rate(hw, parent_rate, val, divider->table,
-                                  divider->flags);
+                                  divider->flags, divider->width);
 }
 
 static bool _is_valid_table_div(const struct clk_div_table *table,
index a1c1f684ad585bbc5d64f3b7954473d442197398..9f46cf9dcc6529ea05e1d685825c17c7dac13339 100644 (file)
@@ -56,7 +56,7 @@ static unsigned long hi6220_clkdiv_recalc_rate(struct clk_hw *hw,
        val &= div_mask(dclk->width);
 
        return divider_recalc_rate(hw, parent_rate, val, dclk->table,
-                                  CLK_DIVIDER_ROUND_CLOSEST);
+                                  CLK_DIVIDER_ROUND_CLOSEST, dclk->width);
 }
 
 static long hi6220_clkdiv_round_rate(struct clk_hw *hw, unsigned long rate,
index 7b359afd620ec0ad23bb6bf2e41da28d5fd4e05a..a6438f50e6db94845e53cfc0c4dce70880d749a5 100644 (file)
@@ -956,7 +956,7 @@ static unsigned long clk_divider_recalc_rate(struct clk_hw *hw,
        val &= div_mask(divider->width);
 
        return divider_recalc_rate(hw, parent_rate, val, divider->table,
-                                  divider->flags);
+                                  divider->flags, divider->width);
 }
 
 static long clk_divider_round_rate(struct clk_hw *hw, unsigned long rate,
index 53484912301eeed5d0d43012af1e2474d1c40d65..928fcc16ee278d1d3278ef873b1eb5d81619cdbb 100644 (file)
@@ -59,7 +59,7 @@ static unsigned long div_recalc_rate(struct clk_hw *hw,
        div &= BIT(divider->width) - 1;
 
        return divider_recalc_rate(hw, parent_rate, div, NULL,
-                                  CLK_DIVIDER_ROUND_CLOSEST);
+                                  CLK_DIVIDER_ROUND_CLOSEST, divider->width);
 }
 
 const struct clk_ops clk_regmap_div_ops = {
index baa3cf96507b5285f94768cb12e734076e97cf93..302a18efd39fa568b8a7ef362ff194e77823e617 100644 (file)
@@ -71,7 +71,7 @@ static unsigned long ccu_div_recalc_rate(struct clk_hw *hw,
                                                  parent_rate);
 
        val = divider_recalc_rate(hw, parent_rate, val, cd->div.table,
-                                 cd->div.flags);
+                                 cd->div.flags, cd->div.width);
 
        if (cd->common.features & CCU_FEATURE_FIXED_POSTDIV)
                val /= cd->fixed_post_div;
index fe15aa64086f213a642d244f78a08c1bb657098c..71fe60e5f01f1e05e99b45d35db3e47e3dba0bf6 100644 (file)
@@ -698,7 +698,7 @@ static unsigned long dsi_pll_14nm_postdiv_recalc_rate(struct clk_hw *hw,
        val &= div_mask(width);
 
        return divider_recalc_rate(hw, parent_rate, val, NULL,
-                                  postdiv->flags);
+                                  postdiv->flags, width);
 }
 
 static long dsi_pll_14nm_postdiv_round_rate(struct clk_hw *hw,
index 9e336184491cbd1b1e80c47cddbf346c24665a63..0282ccc6181ca68c253dab4b1433450f9a590522 100644 (file)
@@ -137,13 +137,15 @@ static unsigned long ac100_clkout_recalc_rate(struct clk_hw *hw,
                div = (reg >> AC100_CLKOUT_PRE_DIV_SHIFT) &
                        ((1 << AC100_CLKOUT_PRE_DIV_WIDTH) - 1);
                prate = divider_recalc_rate(hw, prate, div,
-                                           ac100_clkout_prediv, 0);
+                                           ac100_clkout_prediv, 0,
+                                           AC100_CLKOUT_PRE_DIV_WIDTH);
        }
 
        div = (reg >> AC100_CLKOUT_DIV_SHIFT) &
                (BIT(AC100_CLKOUT_DIV_WIDTH) - 1);
        return divider_recalc_rate(hw, prate, div, NULL,
-                                  CLK_DIVIDER_POWER_OF_TWO);
+                                  CLK_DIVIDER_POWER_OF_TWO,
+                                  AC100_CLKOUT_DIV_WIDTH);
 }
 
 static long ac100_clkout_round_rate(struct clk_hw *hw, unsigned long rate,
index 7c925e6211f12eb91b1236d091eed57180899138..48171b349b889c24b6f5c7ed5e58626d21d77091 100644 (file)
@@ -412,7 +412,7 @@ extern const struct clk_ops clk_divider_ro_ops;
 
 unsigned long divider_recalc_rate(struct clk_hw *hw, unsigned long parent_rate,
                unsigned int val, const struct clk_div_table *table,
-               unsigned long flags);
+               unsigned long flags, unsigned long width);
 long divider_round_rate_parent(struct clk_hw *hw, struct clk_hw *parent,
                               unsigned long rate, unsigned long *prate,
                               const struct clk_div_table *table,