All of lore.kernel.org
 help / color / mirror / Atom feed
From: mturquette@linaro.org (Mike Turquette)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2] clk: bcm/kona: implement determine_rate()
Date: Tue, 27 May 2014 18:19:33 -0700	[thread overview]
Message-ID: <20140528011933.7816.95715@quantum> (raw)
In-Reply-To: <1401209816-24953-1-git-send-email-elder@linaro.org>

Quoting Alex Elder (2014-05-27 09:56:56)
> Implement the clk->determine_rate method for Broadcom Kona peripheral
> clocks.  This allows a peripheral clock to be re-parented in order to
> satisfy a rate change request.  This takes the place of the previous
> kona_peri_clk_round_rate() functionality, though that function remains
> because it is used by the new one.
> 
> The parent clock that allows the peripheral clock to produce a rate
> closest to the one requested is the one selected, though the current
> parent is used by default.
> 
> Signed-off-by: Alex Elder <elder@linaro.org>

Applied to clk-next.

Regards,
Mike

> ---
> v2: Added WARN_ON_ONCE() call as suggested.
> 
> This patch is based on Mike Turquette's current "clk-next" branch.
>     42dd880 Merge branch 'clk-fixes' into clk-next
> 
> It is available here:
>     http://git.linaro.org/landing-teams/working/broadcom/kernel.git
>     Branch review/bcm-determine-rate-v2
> 
>  drivers/clk/bcm/clk-kona.c | 54 +++++++++++++++++++++++++++++++++++++++++++++-
>  1 file changed, 53 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/clk/bcm/clk-kona.c b/drivers/clk/bcm/clk-kona.c
> index d603c4e..95af2e6 100644
> --- a/drivers/clk/bcm/clk-kona.c
> +++ b/drivers/clk/bcm/clk-kona.c
> @@ -1031,6 +1031,58 @@ static long kona_peri_clk_round_rate(struct clk_hw *hw, unsigned long rate,
>                                 rate ? rate : 1, *parent_rate, NULL);
>  }
>  
> +static long kona_peri_clk_determine_rate(struct clk_hw *hw, unsigned long rate,
> +               unsigned long *best_parent_rate, struct clk **best_parent)
> +{
> +       struct kona_clk *bcm_clk = to_kona_clk(hw);
> +       struct clk *clk = hw->clk;
> +       struct clk *current_parent;
> +       unsigned long parent_rate;
> +       unsigned long best_delta;
> +       unsigned long best_rate;
> +       u32 parent_count;
> +       u32 which;
> +
> +       /*
> +        * If there is no other parent to choose, use the current one.
> +        * Note:  We don't honor (or use) CLK_SET_RATE_NO_REPARENT.
> +        */
> +       WARN_ON_ONCE(bcm_clk->init_data.flags & CLK_SET_RATE_NO_REPARENT);
> +       parent_count = (u32)bcm_clk->init_data.num_parents;
> +       if (parent_count < 2)
> +               return kona_peri_clk_round_rate(hw, rate, best_parent_rate);
> +
> +       /* Unless we can do better, stick with current parent */
> +       current_parent = clk_get_parent(clk);
> +       parent_rate = __clk_get_rate(current_parent);
> +       best_rate = kona_peri_clk_round_rate(hw, rate, &parent_rate);
> +       best_delta = abs(best_rate - rate);
> +
> +       /* Check whether any other parent clock can produce a better result */
> +       for (which = 0; which < parent_count; which++) {
> +               struct clk *parent = clk_get_parent_by_index(clk, which);
> +               unsigned long delta;
> +               unsigned long other_rate;
> +
> +               BUG_ON(!parent);
> +               if (parent == current_parent)
> +                       continue;
> +
> +               /* We don't support CLK_SET_RATE_PARENT */
> +               parent_rate = __clk_get_rate(parent);
> +               other_rate = kona_peri_clk_round_rate(hw, rate, &parent_rate);
> +               delta = abs(other_rate - rate);
> +               if (delta < best_delta) {
> +                       best_delta = delta;
> +                       best_rate = other_rate;
> +                       *best_parent = parent;
> +                       *best_parent_rate = parent_rate;
> +               }
> +       }
> +
> +       return best_rate;
> +}
> +
>  static int kona_peri_clk_set_parent(struct clk_hw *hw, u8 index)
>  {
>         struct kona_clk *bcm_clk = to_kona_clk(hw);
> @@ -1135,7 +1187,7 @@ struct clk_ops kona_peri_clk_ops = {
>         .disable = kona_peri_clk_disable,
>         .is_enabled = kona_peri_clk_is_enabled,
>         .recalc_rate = kona_peri_clk_recalc_rate,
> -       .round_rate = kona_peri_clk_round_rate,
> +       .determine_rate = kona_peri_clk_determine_rate,
>         .set_parent = kona_peri_clk_set_parent,
>         .get_parent = kona_peri_clk_get_parent,
>         .set_rate = kona_peri_clk_set_rate,
> -- 
> 1.9.1
> 

WARNING: multiple messages have this Message-ID (diff)
From: Mike Turquette <mturquette@linaro.org>
To: Alex Elder <elder@linaro.org>, mporter@linaro.org, bcm@fixthebug.org
Cc: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2] clk: bcm/kona: implement determine_rate()
Date: Tue, 27 May 2014 18:19:33 -0700	[thread overview]
Message-ID: <20140528011933.7816.95715@quantum> (raw)
In-Reply-To: <1401209816-24953-1-git-send-email-elder@linaro.org>

Quoting Alex Elder (2014-05-27 09:56:56)
> Implement the clk->determine_rate method for Broadcom Kona peripheral
> clocks.  This allows a peripheral clock to be re-parented in order to
> satisfy a rate change request.  This takes the place of the previous
> kona_peri_clk_round_rate() functionality, though that function remains
> because it is used by the new one.
> 
> The parent clock that allows the peripheral clock to produce a rate
> closest to the one requested is the one selected, though the current
> parent is used by default.
> 
> Signed-off-by: Alex Elder <elder@linaro.org>

Applied to clk-next.

Regards,
Mike

> ---
> v2: Added WARN_ON_ONCE() call as suggested.
> 
> This patch is based on Mike Turquette's current "clk-next" branch.
>     42dd880 Merge branch 'clk-fixes' into clk-next
> 
> It is available here:
>     http://git.linaro.org/landing-teams/working/broadcom/kernel.git
>     Branch review/bcm-determine-rate-v2
> 
>  drivers/clk/bcm/clk-kona.c | 54 +++++++++++++++++++++++++++++++++++++++++++++-
>  1 file changed, 53 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/clk/bcm/clk-kona.c b/drivers/clk/bcm/clk-kona.c
> index d603c4e..95af2e6 100644
> --- a/drivers/clk/bcm/clk-kona.c
> +++ b/drivers/clk/bcm/clk-kona.c
> @@ -1031,6 +1031,58 @@ static long kona_peri_clk_round_rate(struct clk_hw *hw, unsigned long rate,
>                                 rate ? rate : 1, *parent_rate, NULL);
>  }
>  
> +static long kona_peri_clk_determine_rate(struct clk_hw *hw, unsigned long rate,
> +               unsigned long *best_parent_rate, struct clk **best_parent)
> +{
> +       struct kona_clk *bcm_clk = to_kona_clk(hw);
> +       struct clk *clk = hw->clk;
> +       struct clk *current_parent;
> +       unsigned long parent_rate;
> +       unsigned long best_delta;
> +       unsigned long best_rate;
> +       u32 parent_count;
> +       u32 which;
> +
> +       /*
> +        * If there is no other parent to choose, use the current one.
> +        * Note:  We don't honor (or use) CLK_SET_RATE_NO_REPARENT.
> +        */
> +       WARN_ON_ONCE(bcm_clk->init_data.flags & CLK_SET_RATE_NO_REPARENT);
> +       parent_count = (u32)bcm_clk->init_data.num_parents;
> +       if (parent_count < 2)
> +               return kona_peri_clk_round_rate(hw, rate, best_parent_rate);
> +
> +       /* Unless we can do better, stick with current parent */
> +       current_parent = clk_get_parent(clk);
> +       parent_rate = __clk_get_rate(current_parent);
> +       best_rate = kona_peri_clk_round_rate(hw, rate, &parent_rate);
> +       best_delta = abs(best_rate - rate);
> +
> +       /* Check whether any other parent clock can produce a better result */
> +       for (which = 0; which < parent_count; which++) {
> +               struct clk *parent = clk_get_parent_by_index(clk, which);
> +               unsigned long delta;
> +               unsigned long other_rate;
> +
> +               BUG_ON(!parent);
> +               if (parent == current_parent)
> +                       continue;
> +
> +               /* We don't support CLK_SET_RATE_PARENT */
> +               parent_rate = __clk_get_rate(parent);
> +               other_rate = kona_peri_clk_round_rate(hw, rate, &parent_rate);
> +               delta = abs(other_rate - rate);
> +               if (delta < best_delta) {
> +                       best_delta = delta;
> +                       best_rate = other_rate;
> +                       *best_parent = parent;
> +                       *best_parent_rate = parent_rate;
> +               }
> +       }
> +
> +       return best_rate;
> +}
> +
>  static int kona_peri_clk_set_parent(struct clk_hw *hw, u8 index)
>  {
>         struct kona_clk *bcm_clk = to_kona_clk(hw);
> @@ -1135,7 +1187,7 @@ struct clk_ops kona_peri_clk_ops = {
>         .disable = kona_peri_clk_disable,
>         .is_enabled = kona_peri_clk_is_enabled,
>         .recalc_rate = kona_peri_clk_recalc_rate,
> -       .round_rate = kona_peri_clk_round_rate,
> +       .determine_rate = kona_peri_clk_determine_rate,
>         .set_parent = kona_peri_clk_set_parent,
>         .get_parent = kona_peri_clk_get_parent,
>         .set_rate = kona_peri_clk_set_rate,
> -- 
> 1.9.1
> 

  reply	other threads:[~2014-05-28  1:19 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-27 16:56 [PATCH v2] clk: bcm/kona: implement determine_rate() Alex Elder
2014-05-27 16:56 ` Alex Elder
2014-05-28  1:19 ` Mike Turquette [this message]
2014-05-28  1:19   ` Mike Turquette

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=20140528011933.7816.95715@quantum \
    --to=mturquette@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.