public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Mike Turquette <mturquette@linaro.org>
To: Maxime COQUELIN <maxime.coquelin@st.com>,
	linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org
Cc: kernel@stlinux.com, maxime.coquelin@st.com
Subject: Re: [PATCH 1/3] clk: divider: Fix best div calculation for power-of-two and table dividers
Date: Fri, 25 Apr 2014 08:31:26 -0700	[thread overview]
Message-ID: <20140425153126.23156.76868@quantum> (raw)
In-Reply-To: <1391012648-12481-2-git-send-email-maxime.coquelin@st.com>

Quoting Maxime COQUELIN (2014-01-29 08:24:06)
> The divider returned by clk_divider_bestdiv() is likely to be invalid in case
> of power-of-two and table dividers when CLK_SET_RATE_PARENT flag isn't set.
> 
> Signed-off-by: Maxime Coquelin <maxime.coquelin@st.com>

I've taken this into clk-fixes for 3.15-rcX.

Thanks,
Mike

> ---
>  drivers/clk/clk-divider.c |   37 ++++++++++++++++++++++++++++++++++++-
>  1 file changed, 36 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/clk/clk-divider.c b/drivers/clk/clk-divider.c
> index 5543b7d..2137d58 100644
> --- a/drivers/clk/clk-divider.c
> +++ b/drivers/clk/clk-divider.c
> @@ -144,6 +144,37 @@ static bool _is_valid_div(struct clk_divider *divider, unsigned int div)
>         return true;
>  }
>  
> +static int _round_up_table(const struct clk_div_table *table, int div)
> +{
> +       const struct clk_div_table *clkt;
> +       int up = _get_table_maxdiv(table);
> +
> +       for (clkt = table; clkt->div; clkt++) {
> +               if (clkt->div == div)
> +                       return clkt->div;
> +               else if (clkt->div < div)
> +                       continue;
> +
> +               if ((clkt->div - div) < (up - div))
> +                       up = clkt->div;
> +       }
> +
> +       return up;
> +}
> +
> +static int _div_round_up(struct clk_divider *divider,
> +               unsigned long parent_rate, unsigned long rate)
> +{
> +       int div = DIV_ROUND_UP(parent_rate, rate);
> +
> +       if (divider->flags & CLK_DIVIDER_POWER_OF_TWO)
> +               div = __roundup_pow_of_two(div);
> +       if (divider->table)
> +               div = _round_up_table(divider->table, div);
> +
> +       return div;
> +}
> +
>  static int clk_divider_bestdiv(struct clk_hw *hw, unsigned long rate,
>                 unsigned long *best_parent_rate)
>  {
> @@ -159,7 +190,7 @@ static int clk_divider_bestdiv(struct clk_hw *hw, unsigned long rate,
>  
>         if (!(__clk_get_flags(hw->clk) & CLK_SET_RATE_PARENT)) {
>                 parent_rate = *best_parent_rate;
> -               bestdiv = DIV_ROUND_UP(parent_rate, rate);
> +               bestdiv = _div_round_up(divider, parent_rate, rate);
>                 bestdiv = bestdiv == 0 ? 1 : bestdiv;
>                 bestdiv = bestdiv > maxdiv ? maxdiv : bestdiv;
>                 return bestdiv;
> @@ -219,6 +250,10 @@ static int clk_divider_set_rate(struct clk_hw *hw, unsigned long rate,
>         u32 val;
>  
>         div = parent_rate / rate;
> +
> +       if (!_is_valid_div(divider, div))
> +               return -EINVAL;
> +
>         value = _get_val(divider, div);
>  
>         if (value > div_mask(divider))
> -- 
> 1.7.9.5
> 

  reply	other threads:[~2014-04-25 15:31 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-01-29 16:24 [PATCH 0/3] CCF clock divider changes Maxime COQUELIN
2014-01-29 16:24 ` [PATCH 1/3] clk: divider: Fix best div calculation for power-of-two and table dividers Maxime COQUELIN
2014-04-25 15:31   ` Mike Turquette [this message]
2014-01-29 16:24 ` [PATCH 2/3] clk: divider: Add round to closest divider Maxime COQUELIN
2014-04-24 15:37   ` Mike Turquette
2014-01-29 16:24 ` [PATCH 3/3] clk: divider: Optimize clk_divider_bestdiv loop Maxime COQUELIN
2014-02-11 10:20 ` [PATCH 0/3] CCF clock divider changes Maxime Coquelin
2014-02-11 10:37 ` Maxime Coquelin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20140425153126.23156.76868@quantum \
    --to=mturquette@linaro.org \
    --cc=kernel@stlinux.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=maxime.coquelin@st.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox