Re: [PATCH v6 1/3] clk: qcom: Configure the RCGs to a safe source as needed

From: Stephen Boyd
Date: Wed May 02 2018 - 03:45:44 EST


Quoting Amit Nischal (2018-04-30 09:20:08)
> diff --git a/drivers/clk/qcom/clk-rcg.h b/drivers/clk/qcom/clk-rcg.h
> index 2a7489a..f795b3e 100644
> --- a/drivers/clk/qcom/clk-rcg.h
> +++ b/drivers/clk/qcom/clk-rcg.h
> @@ -1,5 +1,5 @@
> /*
> - * Copyright (c) 2013, The Linux Foundation. All rights reserved.
> + * Copyright (c) 2013, 2018, The Linux Foundation. All rights reserved.

Given that you're updating this, can you move this to SPDX as well? If
that causes some sort of delay, it's OK to defer, but please send a
patch to do it sometime soon after this series.

> *
> * This software is licensed under the terms of the GNU General Public
> * License version 2, as published by the Free Software Foundation, and
> diff --git a/drivers/clk/qcom/clk-rcg2.c b/drivers/clk/qcom/clk-rcg2.c
> index e63db10..4a23a7b 100644
> --- a/drivers/clk/qcom/clk-rcg2.c
> +++ b/drivers/clk/qcom/clk-rcg2.c
> @@ -249,7 +249,8 @@ static int clk_rcg2_determine_floor_rate(struct clk_hw *hw,
> return _freq_tbl_determine_rate(hw, rcg->freq_tbl, req, FLOOR);
> }
>
> -static int clk_rcg2_configure(struct clk_rcg2 *rcg, const struct freq_tbl *f)
> +static int clk_rcg2_configure(struct clk_rcg2 *rcg, const struct freq_tbl *f,
> + bool update_rcg_config)

Please leave clk_rcg2_configure() signature alone. Don't add a flag to
say "hit the update". Instead, make a __clk_rcg2_configure() that
doesn't hit the update bit, but does everything else and then have
clk_rcg2_configure() call that function and also hit the update bit.

> {
> u32 cfg, mask;
> struct clk_hw *hw = &rcg->clkr.hw;
> @@ -287,6 +288,9 @@ static int clk_rcg2_configure(struct clk_rcg2 *rcg, const struct freq_tbl *f)
> if (ret)
> return ret;
>
> + if (!update_rcg_config)
> + return 0;
> +

Then this logic doesn't have to exist.

> return update_config(rcg);
> }
>
> @@ -310,7 +314,7 @@ static int __clk_rcg2_set_rate(struct clk_hw *hw, unsigned long rate,
> if (!f)
> return -EINVAL;
>
> - return clk_rcg2_configure(rcg, f);
> + return clk_rcg2_configure(rcg, f, true);
> }
>
> static int clk_rcg2_set_rate(struct clk_hw *hw, unsigned long rate,
> @@ -419,7 +423,7 @@ static int clk_edp_pixel_set_rate(struct clk_hw *hw, unsigned long rate,
> f.m = frac->num;
> f.n = frac->den;
>
> - return clk_rcg2_configure(rcg, &f);
> + return clk_rcg2_configure(rcg, &f, true);
> }
>
> return -EINVAL;
> @@ -523,7 +527,7 @@ static int clk_byte_set_rate(struct clk_hw *hw, unsigned long rate,
>
> f.pre_div = div;
>
> - return clk_rcg2_configure(rcg, &f);
> + return clk_rcg2_configure(rcg, &f, true);
> }
>
> static int clk_byte_set_rate_and_parent(struct clk_hw *hw,
> @@ -589,7 +593,7 @@ static int clk_byte2_set_rate(struct clk_hw *hw, unsigned long rate,
> for (i = 0; i < num_parents; i++) {
> if (cfg == rcg->parent_map[i].cfg) {
> f.src = rcg->parent_map[i].src;
> - return clk_rcg2_configure(rcg, &f);
> + return clk_rcg2_configure(rcg, &f, true);
> }
> }
>
> @@ -682,7 +686,7 @@ static int clk_pixel_set_rate(struct clk_hw *hw, unsigned long rate,
> f.m = frac->num;
> f.n = frac->den;
>
> - return clk_rcg2_configure(rcg, &f);
> + return clk_rcg2_configure(rcg, &f, true);
> }
> return -EINVAL;
> }

And all those hunks don't happen. Yay!

> @@ -790,3 +794,194 @@ static int clk_gfx3d_set_rate(struct clk_hw *hw, unsigned long rate,
> +
> +static int
> +clk_rcg2_shared_force_enable_clear(struct clk_hw *hw, const struct freq_tbl *f)
> +{
> + struct clk_rcg2 *rcg = to_clk_rcg2(hw);
> + int ret;
> +
> + if (!f)
> + return -EINVAL;
> +
> + ret = clk_rcg2_set_force_enable(hw);
> + if (ret)
> + return ret;
> +
> + ret = clk_rcg2_configure(rcg, f, true);
> + if (ret)
> + return ret;
> +
> + return clk_rcg2_clear_force_enable(hw);
> +}
> +
> +static int clk_rcg2_shared_set_rate(struct clk_hw *hw, unsigned long rate,
> + unsigned long parent_rate)
> +{
> + struct clk_rcg2 *rcg = to_clk_rcg2(hw);
> + const struct freq_tbl *f;
> +
> + f = qcom_find_freq(rcg->freq_tbl, rate);
> + if (!f)
> + return -EINVAL;
> +
> + /*
> + * Store freq_tbl corresponding to requested rate in case disable() op
> + * clears the cached registers - disable() gets call after set_rate().
> + */
> + rcg->current_freq_tbl = f;

Shouldn't be needed.

> +
> + /*
> + * In case clock is disabled, update the CFG, M, N and D registers
> + * and do not hit the update bit of CMD register.
> + */
> + if (!__clk_is_enabled(hw->clk))
> + /* Skip the configuration update */
> + return clk_rcg2_configure(rcg, rcg->current_freq_tbl, false);
> +
> + return clk_rcg2_shared_force_enable_clear(hw, rcg->current_freq_tbl);
> +}
> +
> +static int clk_rcg2_shared_set_rate_and_parent(struct clk_hw *hw,
> + unsigned long rate, unsigned long parent_rate, u8 index)
> +{
> + return clk_rcg2_shared_set_rate(hw, rate, parent_rate);
> +}
> +
> +static unsigned long
> +clk_rcg2_shared_recalc_rate(struct clk_hw *hw, unsigned long parent_rate)
> +{
> + struct clk_rcg2 *rcg = to_clk_rcg2(hw);
> +
> + if (!__clk_is_enabled(hw->clk) && rcg->current_freq_tbl)
> + return rcg->current_freq_tbl->freq;

Why can't we read the hardware? The M, N, D registers should always have
the latest configuration of the frequency when recalc is called
regardless of the on/off state.

> +
> + return clk_rcg2_recalc_rate(hw, parent_rate);
> +}
> +
> +static int clk_rcg2_shared_enable(struct clk_hw *hw)
> +{
> + struct clk_rcg2 *rcg = to_clk_rcg2(hw);
> + struct freq_tbl safe_src_tbl = { 0 };
> + int ret;
> + u32 cfg_src;
> +
> + regmap_read(rcg->clkr.regmap, rcg->cmd_rcgr + CFG_REG, &cfg_src);
> +
> + cfg_src = cfg_src & CFG_SRC_SEL_MASK;
> + cfg_src >>= CFG_SRC_SEL_SHIFT;
> +
> + if (!rcg->current_freq_tbl) {
> + /*
> + * In the case where clk_enable() would be called
> + * without a clk_set_rate(), check for RCG configuration
> + * if done previously.
> + */
> +
> + if (cfg_src)
> + return 0;
> +
> + /*
> + * Configure RCG to safe_src, if following conditions
> + * holds true:
> + * - Bootloader configures the RCG to run from safe_src.
> + * - RCG's frequency table does not hold entry for
> + * safe_src speed.
> + */
> + safe_src_tbl.src = rcg->safe_src_index;
> + return clk_rcg2_shared_force_enable_clear(hw, &safe_src_tbl);
> + }
> +
> + /*
> + * Switch from safe source to the stashed mux selection. The current
> + * parent has already been prepared and enabled at this point, and
> + * the safe source is always on while application processor subsystem
> + * is online. Therefore, the RCG can safely switch its source.
> + */
> +
> + if (!cfg_src)
> + /*
> + * Reconfigure the RCG if cached registers are overwritten
> + * by clk_disable() after clk_set_rate().
> + */
> + return clk_rcg2_shared_force_enable_clear(hw,
> + rcg->current_freq_tbl);
> +
> + /*
> + * Set the update bit only as other required configuration has been
> + * already done inside set_rate().
> + */
> + ret = clk_rcg2_set_force_enable(hw);
> + if (ret)
> + return ret;
> +
> + ret = update_config(rcg);
> + if (ret)
> + return ret;
> +
> + return clk_rcg2_clear_force_enable(hw);

This whole function seems overly complicated. Please see my comment
below.

> +}
> +
> +static void clk_rcg2_shared_disable(struct clk_hw *hw)
> +{
> + struct clk_rcg2 *rcg = to_clk_rcg2(hw);
> + struct freq_tbl safe_src_tbl = { 0 };
> +
> + /*
> + * Park the RCG at a safe configuration - sourced off from safe source.
> + * Force enable and disable the RCG while configuring it to safeguard
> + * against any update signal coming from the downstream clock.
> + * The current parent is still prepared and enabled at this point, and
> + * the safe source is always on while application processor subsystem
> + * is online. Therefore, the RCG can safely switch its parent.
> + */
> + safe_src_tbl.src = rcg->safe_src_index;
> + clk_rcg2_shared_force_enable_clear(hw, &safe_src_tbl);

This should then re-dirty the config register to have the software
frequency settings that existed in the hardware when disable was called.
Given that MND shouldn't be changed here, this should be as simple as
saving away the CFG register, forcing it to XO speed by changing the src
and disabling dual edge in the CFG register (please don't call
force_enable_clear with some frequency pointer, just do this inline
here), and then rewriting the cfg register with the "real" settings for
whatever frequency it's supposed to run at and then returning from this
function.

I guess we have to do a read cfg from hardware, write cfg, hit update
config, and then write cfg again each time we disable. For enable, we
just do an update config (if it's dirty?) inside of a force
enable/disable pair. And set_rate doesn't really change except it either
does or doesn't hit the update config bit if the clk is enabled or
disabled respectively.