Message ID | 1525105210-8689-2-git-send-email-anischal@codeaurora.org (mailing list archive) |
---|---|
State | Superseded, archived |
Delegated to: | Andy Gross |
Headers | show |
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. -- To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On 2018-05-02 13:15, Stephen Boyd wrote: > 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. > ok sure, I will update the same to SPDX as suggested in the next patch 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. > Thanks for the suggestion. Will take care of the same in the next patch series. >> { >> 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. Yes true. Above logic is not required anymore. > >> 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. > Yes with new implementation it is not required to store freq_tbl. Please have a look at my last comment where I have explained the new logic. >> + >> + /* >> + * 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. > With new implementation, it is not required to make a decision based on the clk on/off status. Please have a look at my last comment. >> + >> + 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. > We have done the below changes suggested by you and that logic seems to be working fine. But we have one concern about leaving the RCG registers in dirty state and would like to have a little bit modification as explained below: Suggested Logic: 1. set_rate()--> Update CFG, M, N and D registers and don't hit the update bit if clock is disabled - call new __clk_rcg2_configure(). Above will make the CFG register as dirty. 2. _disable()--> 2.1 - Store the CFG register configuration in a variable. 2.2 - Move to the safe source (XO) and hit the update bit. It will only touch the CFG register and M, N, D register values will remain as it was. 2.3 - Write back the stored CFG value done in step #2.1 This will again redirty the CFG register. 3. _enable()--> Just hit the update bit as the configuration write will be taken care in the steps #1 and #2. It would be great if we don't redirty the CFG register and leave the RCG CFG register to at safe source(XO) in disable() path. This would help us to debug the issues where device crashes and we want to dump the RCG registers to know whether from software, we have actually moved to safe source or not. Otherwise, we would get the dirty register values in crash dumps. So instead of writing back the stored CFG(corresponding to real rate settings) in disable path, we want to restore the stored CFG in enable path and then hit the update bit. CFG configuration store can happen at two places - set_rate() and disable() path and above logic will be modified as below: 1. set_rate()--> 1.1 - Update CFG, M, N and D registers and don't hit the update bit if clock is disabled. 1.2 - Store CFG register value in 'current_cfg' member of 'rcg2' structure. 2. _disable()--> 2.1 - Store the CFG register value in 'current_cfg' before switching to the safe source (XO). 2.2 - Move to the safe source (XO) and hit the update bit. Now RCG configuration wil not be dirty. 3. _enable()--> 3.1 - Check for 'current_cfg' value and if 0 then return. This would catch the below one time condition: - when clk_enable() gets call without set_rate(). 3.2 - Write the CFG value from 'current_cfg' to CFG register. 3.2 - Hit the update bit as we have already written the latest configuration in step #3.2. 3.3 - Clear the 'current_cfg' value. We feel above logic will work as expected and in this way, we don't have CFG registers in dirty state when clock is disabled. Could you please inform us your thoughts about above implementation and based on that I will send the required changes. > -- > To unsubscribe from this list: send the line "unsubscribe linux-clk" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html -- To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Quoting Amit Nischal (2018-05-03 04:57:37) > On 2018-05-02 13:15, Stephen Boyd wrote: > > Quoting Amit Nischal (2018-04-30 09:20:08) > > > >> +} > >> + > >> +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. > > > > We have done the below changes suggested by you and that logic seems to > be > working fine. But we have one concern about leaving the RCG registers in > dirty state and would like to have a little bit modification as > explained > below: > > Suggested Logic: > 1. set_rate()--> Update CFG, M, N and D registers and don't hit the > update > bit if clock is disabled - call new > __clk_rcg2_configure(). > Above will make the CFG register as dirty. > > 2. _disable()--> 2.1 - Store the CFG register configuration in a > variable. > 2.2 - Move to the safe source (XO) and hit the update > bit. > It will only touch the CFG register and M, N, D > register values will remain as it was. > 2.3 - Write back the stored CFG value done in step #2.1 > This will again redirty the CFG register. > > 3. _enable()--> Just hit the update bit as the configuration write will > be taken care in the steps #1 and #2. > > It would be great if we don't redirty the CFG register and leave the RCG > CFG register to at safe source(XO) in disable() path. > > This would help us to debug the issues where device crashes and we want > to dump the RCG registers to know whether from software, we have > actually > moved to safe source or not. Otherwise, we would get the dirty register > values in crash dumps. > > So instead of writing back the stored CFG(corresponding to real rate > settings) in disable path, we want to restore the stored CFG in enable > path and then hit the update bit. > CFG configuration store can happen at two places - set_rate() and > disable() > path and above logic will be modified as below: > > 1. set_rate()--> 1.1 - Update CFG, M, N and D registers and don't hit > the > update bit if clock is disabled. > 1.2 - Store CFG register value in 'current_cfg' member > of 'rcg2' structure. > > 2. _disable()--> 2.1 - Store the CFG register value in 'current_cfg' > before > switching to the safe source (XO). > 2.2 - Move to the safe source (XO) and hit the update > bit. > Now RCG configuration wil not be dirty. > > 3. _enable()--> 3.1 - Check for 'current_cfg' value and if 0 then > return. > This would catch the below one time condition: > - when clk_enable() gets call without set_rate(). We want clk_enable() to work without set_rate() though. So returning 0 if the value is 0 is wrong. > 3.2 - Write the CFG value from 'current_cfg' to CFG > register. > 3.2 - Hit the update bit as we have already written the > latest > configuration in step #3.2. > 3.3 - Clear the 'current_cfg' value. > > We feel above logic will work as expected and in this way, we don't have > CFG > registers in dirty state when clock is disabled. > Could you please inform us your thoughts about above implementation and > based > on that I will send the required changes. > If you want to save away current_cfg in a memory location so you know what it was before it was dirty, then perhaps that needs to be a debug patch that you stack on top when debugging. In the end, it would just be saving the state of the frequency setting that we have in software though, and that would be the latest rate of the clk we have configured the clk for. There aren't any mux switches going on when the clk is off, so you're saying you want to know the rate of the clk that the kernel set when we turned the clk off, which we already have with the clk rate. I'm confused. -- To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On 2018-05-05 08:54, Stephen Boyd wrote: > Quoting Amit Nischal (2018-05-03 04:57:37) >> On 2018-05-02 13:15, Stephen Boyd wrote: >> > Quoting Amit Nischal (2018-04-30 09:20:08) >> > >> >> +} >> >> + >> >> +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. >> > >> >> We have done the below changes suggested by you and that logic seems >> to >> be >> working fine. But we have one concern about leaving the RCG registers >> in >> dirty state and would like to have a little bit modification as >> explained >> below: >> >> Suggested Logic: >> 1. set_rate()--> Update CFG, M, N and D registers and don't hit the >> update >> bit if clock is disabled - call new >> __clk_rcg2_configure(). >> Above will make the CFG register as dirty. >> >> 2. _disable()--> 2.1 - Store the CFG register configuration in a >> variable. >> 2.2 - Move to the safe source (XO) and hit the >> update >> bit. >> It will only touch the CFG register and M, N, >> D >> register values will remain as it was. >> 2.3 - Write back the stored CFG value done in step >> #2.1 >> This will again redirty the CFG register. >> >> 3. _enable()--> Just hit the update bit as the configuration write >> will >> be taken care in the steps #1 and #2. >> >> It would be great if we don't redirty the CFG register and leave the >> RCG >> CFG register to at safe source(XO) in disable() path. >> >> This would help us to debug the issues where device crashes and we >> want >> to dump the RCG registers to know whether from software, we have >> actually >> moved to safe source or not. Otherwise, we would get the dirty >> register >> values in crash dumps. >> >> So instead of writing back the stored CFG(corresponding to real rate >> settings) in disable path, we want to restore the stored CFG in enable >> path and then hit the update bit. >> CFG configuration store can happen at two places - set_rate() and >> disable() >> path and above logic will be modified as below: >> >> 1. set_rate()--> 1.1 - Update CFG, M, N and D registers and don't hit >> the >> update bit if clock is disabled. >> 1.2 - Store CFG register value in 'current_cfg' >> member >> of 'rcg2' structure. >> >> 2. _disable()--> 2.1 - Store the CFG register value in 'current_cfg' >> before >> switching to the safe source (XO). >> 2.2 - Move to the safe source (XO) and hit the >> update >> bit. >> Now RCG configuration wil not be dirty. >> >> 3. _enable()--> 3.1 - Check for 'current_cfg' value and if 0 then >> return. >> This would catch the below one time condition: >> - when clk_enable() gets call without >> set_rate(). > > We want clk_enable() to work without set_rate() though. So returning 0 > if the value is 0 is wrong. > >> 3.2 - Write the CFG value from 'current_cfg' to CFG >> register. >> 3.2 - Hit the update bit as we have already written >> the >> latest >> configuration in step #3.2. >> 3.3 - Clear the 'current_cfg' value. >> >> We feel above logic will work as expected and in this way, we don't >> have >> CFG >> registers in dirty state when clock is disabled. >> Could you please inform us your thoughts about above implementation >> and >> based >> on that I will send the required changes. >> > > If you want to save away current_cfg in a memory location so you know > what it was before it was dirty, then perhaps that needs to be a debug > patch that you stack on top when debugging. In the end, it would just > be > saving the state of the frequency setting that we have in software > though, and that would be the latest rate of the clk we have configured > the clk for. There aren't any mux switches going on when the clk is > off, > so you're saying you want to know the rate of the clk that the kernel > set when we turned the clk off, which we already have with the clk > rate. > I'm confused. Thanks for the suggestions. We will implement the new ops with the below logic which you suggested earlier i.e. re-dirtying the RCG in disable() path with real CFG settings and in enable() path, only hit the update bit. 1. set_rate()--> Update CFG, M, N and D registers and don't hit the update bit if clock is disabled - call new __clk_rcg2_configure(). Above will make the CFG register as dirty. 2. _disable()--> 2.1 - Store the CFG register configuration in a variable. 2.2 - Move to the safe source (XO) and hit the update bit. It will only touch the CFG register and M, N, D register values will remain as it was. 2.3 - Write back the stored CFG value done in step #2.1 This will again redirty the CFG register. 3. _enable()--> Just hit the update bit as the configuration write will be taken care in the steps #1 and #2. -- To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
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. * * This software is licensed under the terms of the GNU General Public * License version 2, as published by the Free Software Foundation, and @@ -144,8 +144,10 @@ struct clk_dyn_rcg { * @cmd_rcgr: corresponds to *_CMD_RCGR * @mnd_width: number of bits in m/n/d values * @hid_width: number of bits in half integer divider + * @safe_src_index: safe src index value * @parent_map: map from software's parent index to hardware's src_sel field * @freq_tbl: frequency table + * @current_freq_tbl: Stores current frequency freq_tbl when using shared RCGs * @clkr: regmap clock handle * */ @@ -153,8 +155,10 @@ struct clk_rcg2 { u32 cmd_rcgr; u8 mnd_width; u8 hid_width; + u8 safe_src_index; const struct parent_map *parent_map; const struct freq_tbl *freq_tbl; + const struct freq_tbl *current_freq_tbl; struct clk_regmap clkr; }; @@ -167,5 +171,6 @@ struct clk_rcg2 { extern const struct clk_ops clk_byte2_ops; extern const struct clk_ops clk_pixel_ops; extern const struct clk_ops clk_gfx3d_ops; +extern const struct clk_ops clk_rcg2_shared_ops; #endif 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) { 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; + 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; } @@ -790,3 +794,194 @@ static int clk_gfx3d_set_rate(struct clk_hw *hw, unsigned long rate, .determine_rate = clk_gfx3d_determine_rate, }; EXPORT_SYMBOL_GPL(clk_gfx3d_ops); + +static int clk_rcg2_set_force_enable(struct clk_hw *hw) +{ + struct clk_rcg2 *rcg = to_clk_rcg2(hw); + const char *name = clk_hw_get_name(hw); + int ret, count; + + /* Force enable bit */ + ret = regmap_update_bits(rcg->clkr.regmap, rcg->cmd_rcgr + CMD_REG, + CMD_ROOT_EN, CMD_ROOT_EN); + if (ret) + return ret; + + /* wait for RCG to turn ON */ + for (count = 500; count > 0; count--) { + if (clk_rcg2_is_enabled(hw)) + return 0; + + /* Delay for 1usec and retry polling the status bit */ + udelay(1); + } + if (!count) + pr_err("%s: RCG did not turn on\n", name); + + return -ETIMEDOUT; +} + +static int clk_rcg2_clear_force_enable(struct clk_hw *hw) +{ + struct clk_rcg2 *rcg = to_clk_rcg2(hw); + + /* Clear force enable bit */ + return regmap_update_bits(rcg->clkr.regmap, rcg->cmd_rcgr + CMD_REG, + CMD_ROOT_EN, 0); +} + +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; + + /* + * 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; + + 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); +} + +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); +} + +const struct clk_ops clk_rcg2_shared_ops = { + .enable = clk_rcg2_shared_enable, + .disable = clk_rcg2_shared_disable, + .get_parent = clk_rcg2_get_parent, + .set_parent = clk_rcg2_set_parent, + .recalc_rate = clk_rcg2_shared_recalc_rate, + .determine_rate = clk_rcg2_determine_rate, + .set_rate = clk_rcg2_shared_set_rate, + .set_rate_and_parent = clk_rcg2_shared_set_rate_and_parent, +}; +EXPORT_SYMBOL_GPL(clk_rcg2_shared_ops);