From: dbasehore@chromium.org (dbasehore .)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 6/6] clk: rockchip: use pre_rate_req for cpuclk
Date: Tue, 23 Oct 2018 21:06:39 -0700 [thread overview]
Message-ID: <CAGAzgso1eocpdLkGO-z8OJhR+HHnR89Uzpw4zPx0e8fb1WuUrw@mail.gmail.com> (raw)
In-Reply-To: <20181024013132.115907-7-dbasehore@chromium.org>
On Tue, Oct 23, 2018 at 6:31 PM Derek Basehore <dbasehore@chromium.org> wrote:
>
> This makes the rockchip cpuclk use the pre_rate_req op to change to
> the alt parent instead of the clk notifier. This has the benefit of
> the clk not changing parents behind the back of the common clk
> framework. It also changes the divider setting for the alt parent to
> only divide when the alt parent rate is higher than both the old and
> new rates.
>
> Signed-off-by: Derek Basehore <dbasehore@chromium.org>
> ---
> drivers/clk/rockchip/clk-cpu.c | 256 ++++++++++++++++++---------------
> 1 file changed, 137 insertions(+), 119 deletions(-)
>
> diff --git a/drivers/clk/rockchip/clk-cpu.c b/drivers/clk/rockchip/clk-cpu.c
> index 32c19c0f1e14..3829e8e75c9e 100644
> --- a/drivers/clk/rockchip/clk-cpu.c
> +++ b/drivers/clk/rockchip/clk-cpu.c
> @@ -45,8 +45,6 @@
> * @alt_parent: alternate parent clock to use when switching the speed
> * of the primary parent clock.
> * @reg_base: base register for cpu-clock values.
> - * @clk_nb: clock notifier registered for changes in clock speed of the
> - * primary parent clock.
> * @rate_count: number of rates in the rate_table
> * @rate_table: pll-rates and their associated dividers
> * @reg_data: cpu-specific register settings
> @@ -60,7 +58,6 @@ struct rockchip_cpuclk {
>
> struct clk *alt_parent;
> void __iomem *reg_base;
> - struct notifier_block clk_nb;
> unsigned int rate_count;
> struct rockchip_cpuclk_rate_table *rate_table;
> const struct rockchip_cpuclk_reg_data *reg_data;
> @@ -78,12 +75,21 @@ static const struct rockchip_cpuclk_rate_table *rockchip_get_cpuclk_settings(
> cpuclk->rate_table;
> int i;
>
> + /*
> + * Find the lowest rate settings for which the prate is greater than or
> + * equal to the rate. Final rates should match exactly, but some
> + * intermediate rates from pre_rate_req will not exactly match, but the
> + * settings for a higher prate will work.
> + */
> for (i = 0; i < cpuclk->rate_count; i++) {
> - if (rate == rate_table[i].prate)
> - return &rate_table[i];
> + if (rate > rate_table[i].prate)
> + break;
> }
>
> - return NULL;
> + if (i == 0 || i == cpuclk->rate_count)
> + return NULL;
> +
> + return &rate_table[i - 1];
> }
>
> static unsigned long rockchip_cpuclk_recalc_rate(struct clk_hw *hw,
> @@ -98,9 +104,70 @@ static unsigned long rockchip_cpuclk_recalc_rate(struct clk_hw *hw,
> return parent_rate / (clksel0 + 1);
> }
>
> -static const struct clk_ops rockchip_cpuclk_ops = {
> - .recalc_rate = rockchip_cpuclk_recalc_rate,
> -};
> +static int rockchip_cpuclk_pre_rate_req(struct clk_hw *hw,
> + const struct clk_rate_request *next,
> + struct clk_rate_request *pre)
> +{
> + struct rockchip_cpuclk *cpuclk = container_of(hw,
> + struct rockchip_cpuclk, hw);
> + const struct rockchip_cpuclk_reg_data *reg_data = cpuclk->reg_data;
> + unsigned long alt_prate, alt_div, hi_rate;
> +
> + pre->best_parent_hw = __clk_get_hw(cpuclk->alt_parent);
> + alt_prate = clk_get_rate(cpuclk->alt_parent);
Should use clk_hw_get_rate here to remove lock recursion and since we
just got the parent hw.
> + pre->best_parent_rate = alt_prate;
> + hi_rate = max_t(unsigned long, next->rate, clk_hw_get_rate(hw));
> +
> + /* Set dividers if we would go above the current or next rate. */
> + if (alt_prate > hi_rate) {
> + alt_div = DIV_ROUND_UP(alt_prate, hi_rate);
> + if (alt_div > reg_data->div_core_mask) {
> + pr_warn("%s: limiting alt-divider %lu to %d\n",
> + __func__, alt_div, reg_data->div_core_mask);
> + alt_div = reg_data->div_core_mask;
> + }
> +
> + pre->rate = alt_prate / alt_div;
> + } else {
> + pre->rate = alt_prate;
> + }
> +
> + return 1;
> +}
> +
> +static int rockchip_cpuclk_set_parent(struct clk_hw *hw, u8 index)
> +{
> + struct rockchip_cpuclk *cpuclk = container_of(hw,
> + struct rockchip_cpuclk, hw);
> + const struct rockchip_cpuclk_reg_data *reg_data = cpuclk->reg_data;
> + unsigned long flags;
> +
> + spin_lock_irqsave(cpuclk->lock, flags);
> + writel(HIWORD_UPDATE(index,
> + reg_data->mux_core_mask,
> + reg_data->mux_core_shift),
> + cpuclk->reg_base + reg_data->core_reg);
> + spin_unlock_irqrestore(cpuclk->lock, flags);
> +
> + return 0;
> +}
> +
> +static u8 rockchip_cpuclk_get_parent(struct clk_hw *hw)
> +{
> + struct rockchip_cpuclk *cpuclk = container_of(hw,
> + struct rockchip_cpuclk, hw);
> + const struct rockchip_cpuclk_reg_data *reg_data = cpuclk->reg_data;
> + unsigned long flags;
> + u32 val;
> +
> + spin_lock_irqsave(cpuclk->lock, flags);
> + val = readl_relaxed(cpuclk->reg_base + reg_data->core_reg);
> + val >>= reg_data->mux_core_shift;
> + val &= reg_data->mux_core_mask;
> + spin_unlock_irqrestore(cpuclk->lock, flags);
> +
> + return val;
> +}
>
> static void rockchip_cpuclk_set_dividers(struct rockchip_cpuclk *cpuclk,
> const struct rockchip_cpuclk_rate_table *rate)
> @@ -120,131 +187,92 @@ static void rockchip_cpuclk_set_dividers(struct rockchip_cpuclk *cpuclk,
> }
> }
>
> -static int rockchip_cpuclk_pre_rate_change(struct rockchip_cpuclk *cpuclk,
> - struct clk_notifier_data *ndata)
> +static int rockchip_cpuclk_set_rate(struct clk_hw *hw, unsigned long rate,
> + unsigned long parent_rate)
> {
> + struct rockchip_cpuclk *cpuclk = container_of(hw,
> + struct rockchip_cpuclk, hw);
> const struct rockchip_cpuclk_reg_data *reg_data = cpuclk->reg_data;
> - const struct rockchip_cpuclk_rate_table *rate;
> - unsigned long alt_prate, alt_div;
> - unsigned long flags;
> + const struct rockchip_cpuclk_rate_table *rate_divs;
> + unsigned long div = (parent_rate / rate) - 1;
> + unsigned long old_rate, flags;
>
> - /* check validity of the new rate */
> - rate = rockchip_get_cpuclk_settings(cpuclk, ndata->new_rate);
> - if (!rate) {
> - pr_err("%s: Invalid rate : %lu for cpuclk\n",
> - __func__, ndata->new_rate);
> + if (div > reg_data->div_core_mask || rate > parent_rate) {
> + pr_err("%s: Invalid rate : %lu %lu for cpuclk\n", __func__,
> + rate, parent_rate);
> return -EINVAL;
> }
>
> - alt_prate = clk_get_rate(cpuclk->alt_parent);
> -
> + old_rate = clk_hw_get_rate(hw);
> + rate_divs = rockchip_get_cpuclk_settings(cpuclk, rate);
> spin_lock_irqsave(cpuclk->lock, flags);
> + if (old_rate < rate)
> + rockchip_cpuclk_set_dividers(cpuclk, rate_divs);
>
> - /*
> - * If the old parent clock speed is less than the clock speed
> - * of the alternate parent, then it should be ensured that at no point
> - * the armclk speed is more than the old_rate until the dividers are
> - * set.
> - */
> - if (alt_prate > ndata->old_rate) {
> - /* calculate dividers */
> - alt_div = DIV_ROUND_UP(alt_prate, ndata->old_rate) - 1;
> - if (alt_div > reg_data->div_core_mask) {
> - pr_warn("%s: limiting alt-divider %lu to %d\n",
> - __func__, alt_div, reg_data->div_core_mask);
> - alt_div = reg_data->div_core_mask;
> - }
> -
> - /*
> - * Change parents and add dividers in a single transaction.
> - *
> - * NOTE: we do this in a single transaction so we're never
> - * dividing the primary parent by the extra dividers that were
> - * needed for the alt.
> - */
> - pr_debug("%s: setting div %lu as alt-rate %lu > old-rate %lu\n",
> - __func__, alt_div, alt_prate, ndata->old_rate);
> -
> - writel(HIWORD_UPDATE(alt_div, reg_data->div_core_mask,
> - reg_data->div_core_shift) |
> - HIWORD_UPDATE(reg_data->mux_core_alt,
> - reg_data->mux_core_mask,
> - reg_data->mux_core_shift),
> - cpuclk->reg_base + reg_data->core_reg);
> - } else {
> - /* select alternate parent */
> - writel(HIWORD_UPDATE(reg_data->mux_core_alt,
> - reg_data->mux_core_mask,
> - reg_data->mux_core_shift),
> - cpuclk->reg_base + reg_data->core_reg);
> - }
> + writel(HIWORD_UPDATE(div,
> + reg_data->div_core_mask,
> + reg_data->div_core_shift),
> + cpuclk->reg_base + reg_data->core_reg);
> + if (old_rate > rate)
> + rockchip_cpuclk_set_dividers(cpuclk, rate_divs);
>
> spin_unlock_irqrestore(cpuclk->lock, flags);
> +
> return 0;
> }
>
> -static int rockchip_cpuclk_post_rate_change(struct rockchip_cpuclk *cpuclk,
> - struct clk_notifier_data *ndata)
> +static int rockchip_cpuclk_set_rate_and_parent(struct clk_hw *hw,
> + unsigned long rate,
> + unsigned long parent_rate,
> + u8 index)
> {
> + struct rockchip_cpuclk *cpuclk = container_of(hw,
> + struct rockchip_cpuclk, hw);
> const struct rockchip_cpuclk_reg_data *reg_data = cpuclk->reg_data;
> - const struct rockchip_cpuclk_rate_table *rate;
> - unsigned long flags;
> + const struct rockchip_cpuclk_rate_table *rate_divs;
> + unsigned long div = (parent_rate / rate) - 1;
> + unsigned long old_rate, flags;
>
> - rate = rockchip_get_cpuclk_settings(cpuclk, ndata->new_rate);
> - if (!rate) {
> - pr_err("%s: Invalid rate : %lu for cpuclk\n",
> - __func__, ndata->new_rate);
> + if (div > reg_data->div_core_mask || rate > parent_rate) {
> + pr_err("%s: Invalid rate : %lu %lu for cpuclk\n", __func__,
> + rate, parent_rate);
> return -EINVAL;
> }
>
> + old_rate = clk_hw_get_rate(hw);
> + rate_divs = rockchip_get_cpuclk_settings(cpuclk, rate);
> spin_lock_irqsave(cpuclk->lock, flags);
> -
> - if (ndata->old_rate < ndata->new_rate)
> - rockchip_cpuclk_set_dividers(cpuclk, rate);
> -
> /*
> - * post-rate change event, re-mux to primary parent and remove dividers.
> - *
> - * NOTE: we do this in a single transaction so we're never dividing the
> - * primary parent by the extra dividers that were needed for the alt.
> + * TODO: This ain't great... Should change the get_cpuclk_settings code
> + * to work with inexact matches to work with alt parent rates.
> */
> -
> - writel(HIWORD_UPDATE(0, reg_data->div_core_mask,
> - reg_data->div_core_shift) |
> - HIWORD_UPDATE(reg_data->mux_core_main,
> - reg_data->mux_core_mask,
> - reg_data->mux_core_shift),
> + if (old_rate < rate)
> + rockchip_cpuclk_set_dividers(cpuclk, rate_divs);
> +
> + writel(HIWORD_UPDATE(div,
> + reg_data->div_core_mask,
> + reg_data->div_core_shift) |
> + HIWORD_UPDATE(index,
> + reg_data->mux_core_mask,
> + reg_data->mux_core_shift),
> cpuclk->reg_base + reg_data->core_reg);
> -
> - if (ndata->old_rate > ndata->new_rate)
> - rockchip_cpuclk_set_dividers(cpuclk, rate);
> + /* Not technically correct */
> + if (old_rate > rate)
> + rockchip_cpuclk_set_dividers(cpuclk, rate_divs);
>
> spin_unlock_irqrestore(cpuclk->lock, flags);
> +
> return 0;
> }
>
> -/*
> - * This clock notifier is called when the frequency of the parent clock
> - * of cpuclk is to be changed. This notifier handles the setting up all
> - * the divider clocks, remux to temporary parent and handling the safe
> - * frequency levels when using temporary parent.
> - */
> -static int rockchip_cpuclk_notifier_cb(struct notifier_block *nb,
> - unsigned long event, void *data)
> -{
> - struct clk_notifier_data *ndata = data;
> - struct rockchip_cpuclk *cpuclk = to_rockchip_cpuclk_nb(nb);
> - int ret = 0;
> -
> - pr_debug("%s: event %lu, old_rate %lu, new_rate: %lu\n",
> - __func__, event, ndata->old_rate, ndata->new_rate);
> - if (event == PRE_RATE_CHANGE)
> - ret = rockchip_cpuclk_pre_rate_change(cpuclk, ndata);
> - else if (event == POST_RATE_CHANGE)
> - ret = rockchip_cpuclk_post_rate_change(cpuclk, ndata);
> -
> - return notifier_from_errno(ret);
> -}
> +static const struct clk_ops rockchip_cpuclk_ops = {
> + .recalc_rate = rockchip_cpuclk_recalc_rate,
> + .pre_rate_req = rockchip_cpuclk_pre_rate_req,
> + .set_parent = rockchip_cpuclk_set_parent,
> + .get_parent = rockchip_cpuclk_get_parent,
> + .set_rate = rockchip_cpuclk_set_rate,
> + .set_rate_and_parent = rockchip_cpuclk_set_rate_and_parent,
> +};
>
> struct clk *rockchip_clk_register_cpuclk(const char *name,
> const char *const *parent_names, u8 num_parents,
> @@ -267,8 +295,8 @@ struct clk *rockchip_clk_register_cpuclk(const char *name,
> return ERR_PTR(-ENOMEM);
>
> init.name = name;
> - init.parent_names = &parent_names[reg_data->mux_core_main];
> - init.num_parents = 1;
> + init.parent_names = parent_names;
> + init.num_parents = num_parents;
> init.ops = &rockchip_cpuclk_ops;
>
> /* only allow rate changes when we have a rate table */
> @@ -282,7 +310,6 @@ struct clk *rockchip_clk_register_cpuclk(const char *name,
> cpuclk->reg_base = reg_base;
> cpuclk->lock = lock;
> cpuclk->reg_data = reg_data;
> - cpuclk->clk_nb.notifier_call = rockchip_cpuclk_notifier_cb;
> cpuclk->hw.init = &init;
>
> cpuclk->alt_parent = __clk_lookup(parent_names[reg_data->mux_core_alt]);
> @@ -309,13 +336,6 @@ struct clk *rockchip_clk_register_cpuclk(const char *name,
> goto free_alt_parent;
> }
>
> - ret = clk_notifier_register(clk, &cpuclk->clk_nb);
> - if (ret) {
> - pr_err("%s: failed to register clock notifier for %s\n",
> - __func__, name);
> - goto free_alt_parent;
> - }
> -
> if (nrates > 0) {
> cpuclk->rate_count = nrates;
> cpuclk->rate_table = kmemdup(rates,
> @@ -323,7 +343,7 @@ struct clk *rockchip_clk_register_cpuclk(const char *name,
> GFP_KERNEL);
> if (!cpuclk->rate_table) {
> ret = -ENOMEM;
> - goto unregister_notifier;
> + goto free_alt_parent;
> }
> }
>
> @@ -338,8 +358,6 @@ struct clk *rockchip_clk_register_cpuclk(const char *name,
>
> free_rate_table:
> kfree(cpuclk->rate_table);
> -unregister_notifier:
> - clk_notifier_unregister(clk, &cpuclk->clk_nb);
> free_alt_parent:
> clk_disable_unprepare(cpuclk->alt_parent);
> free_cpuclk:
> --
> 2.19.1.568.g152ad8e336-goog
>
next prev parent reply other threads:[~2018-10-24 4:06 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-10-24 1:31 [PATCH 0/6] Coordinated Clks Derek Basehore
2018-10-24 1:31 ` [PATCH 1/6] clk: Remove recursion in clk_core_{prepare,enable}() Derek Basehore
2018-10-24 9:51 ` Jerome Brunet
2018-10-24 20:15 ` dbasehore .
2018-10-24 20:23 ` dbasehore .
2018-10-24 20:50 ` dbasehore .
2018-10-25 8:57 ` Jerome Brunet
2018-10-24 20:36 ` dbasehore .
2018-10-25 8:12 ` Jerome Brunet
2018-10-24 13:07 ` Stephen Boyd
2018-10-24 20:09 ` dbasehore .
2018-10-24 1:31 ` [PATCH 2/6] clk: fix clk_calc_subtree compute duplications Derek Basehore
2018-11-01 2:58 ` dbasehore .
2018-10-24 1:31 ` [PATCH 3/6] clk: change rates via list iteration Derek Basehore
2018-10-26 3:29 ` dbasehore .
2018-10-24 1:31 ` [PATCH 4/6] clk: add pre clk changes support Derek Basehore
2018-10-24 1:31 ` [PATCH 5/6] docs: driver-api: add pre_rate_req to clk documentation Derek Basehore
2018-10-24 1:31 ` [PATCH 6/6] clk: rockchip: use pre_rate_req for cpuclk Derek Basehore
2018-10-24 4:06 ` dbasehore . [this message]
2018-12-20 21:15 ` [PATCH 0/6] Coordinated Clks Stephen Boyd
2018-12-20 23:20 ` dbasehore .
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=CAGAzgso1eocpdLkGO-z8OJhR+HHnR89Uzpw4zPx0e8fb1WuUrw@mail.gmail.com \
--to=dbasehore@chromium.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).