From: Sylwester Nawrocki <s.nawrocki@samsung.com>
To: Mike Turquette <mturquette@linaro.org>,
Stephen Boyd <sboyd@codeaurora.org>
Cc: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>,
Thomas Abraham <thomas.ab@samsung.com>,
Kukjin Kim <kgene@kernel.org>,
Viresh Kumar <viresh.kumar@linaro.org>,
Tomasz Figa <tomasz.figa@gmail.com>,
Lukasz Majewski <l.majewski@samsung.com>,
Heiko Stuebner <heiko@sntech.de>,
Chanwoo Choi <cw00.choi@samsung.com>,
Kevin Hilman <khilman@linaro.org>,
Javier Martinez Canillas <javier.martinez@collabora.co.uk>,
linux-samsung-soc@vger.kernel.org, linux-pm@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 1/6] clk: add CLK_RECALC_NEW_RATES clock flag for Exynos cpu clock support
Date: Wed, 13 May 2015 16:13:13 +0200 [thread overview]
Message-ID: <55535BF9.60609@samsung.com> (raw)
In-Reply-To: <1428079429-4252-2-git-send-email-b.zolnierkie@samsung.com>
On 03/04/15 18:43, Bartlomiej Zolnierkiewicz wrote:
> This flag is needed to fix the issue with wrong dividers being setup
> by Common Clock Framework when using the new Exynos cpu clock support.
>
> The issue happens because clk_core_set_rate_nolock() calls
> clk_calc_new_rates(clk, rate) before both pre/post clock notifiers have
> a chance to run. In case of Exynos cpu clock support pre/post clock
> notifiers are registered for mout_apll clock which is a parent of armclk
> cpu clock and dividers are modified in both pre and post clock notifier.
> This results in wrong dividers values being later programmed by
> clk_change_rate(top). To workaround the problem CLK_RECALC_NEW_RATES
> flag is added and it is set for mout_apll clock later so the correct
> divider values are re-calculated after both pre and post clock notifiers
> had run.
>
> For example when using "performance" governor on Exynos4210 Origen board
> the cpufreq-dt driver requests to change the frequency from 1000MHz to
> 1200MHz and after the change state of the relevant clocks is following:
>
> Without use of CLK_GET_RATE_NOCACHE flag:
>
> fout_apll rate: 1200000000
> fout_apll_div_2 rate: 600000000
> mout_clkout_cpu rate: 600000000
> div_clkout_cpu rate: 600000000
> clkout_cpu rate: 600000000
> mout_apll rate: 1200000000
> armclk rate: 1200000000
> mout_hpm rate: 1200000000
> div_copy rate: 300000000
> div_hpm rate: 300000000
> mout_core rate: 1200000000
> div_core rate: 1200000000
> div_core2 rate: 1200000000
> arm_clk_div_2 rate: 600000000
> div_corem0 rate: 300000000
> div_corem1 rate: 150000000
> div_periph rate: 300000000
> div_atb rate: 300000000
> div_pclk_dbg rate: 150000000
> sclk_apll rate: 1200000000
> sclk_apll_div_2 rate: 600000000
>
>
> With use of CLK_GET_RATE_NOCACHE flag:
>
> fout_apll rate: 1200000000
> fout_apll_div_2 rate: 600000000
> mout_clkout_cpu rate: 600000000
> div_clkout_cpu rate: 600000000
> clkout_cpu rate: 600000000
> mout_apll rate: 1200000000
> armclk rate: 1200000000
> mout_hpm rate: 1200000000
> div_copy rate: 200000000
> div_hpm rate: 200000000
> mout_core rate: 1200000000
> div_core rate: 1200000000
> div_core2 rate: 1200000000
> arm_clk_div_2 rate: 600000000
> div_corem0 rate: 300000000
> div_corem1 rate: 150000000
> div_periph rate: 300000000
> div_atb rate: 240000000
> div_pclk_dbg rate: 120000000
> sclk_apll rate: 150000000
> sclk_apll_div_2 rate: 75000000
>
> Without this change cpufreq-dt driver showed ~10 mA larger energy
> consumption when compared to cpufreq-exynos one when "performance"
> cpufreq governor was used on Exynos4210 SoC based Origen board.
>
> This issue was probably meant to be workarounded by use of
> CLK_GET_RATE_NOCACHE and CLK_DIVIDER_READ_ONLY clock flags in
> the original Exynos cpu clock patchset (in "[PATCH v12 6/6] clk:
> samsung: remove unused clock aliases and update clock flags" patch)
> but usage of these flags is not sufficient to fix the issue observed.
>
> Cc: Thomas Abraham <thomas.ab@samsung.com>
> Cc: Tomasz Figa <tomasz.figa@gmail.com>
> Cc: Mike Turquette <mturquette@linaro.org>
> Cc: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
> Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
> ---
> drivers/clk/clk.c | 3 +++
> include/linux/clk-provider.h | 1 +
> 2 files changed, 4 insertions(+)
>
> diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c
> index f85c8e2..97cc73e 100644
> --- a/drivers/clk/clk.c
> +++ b/drivers/clk/clk.c
> @@ -1771,6 +1771,9 @@ static void clk_change_rate(struct clk_core *clk)
> if (clk->notifier_count && old_rate != clk->rate)
> __clk_notify(clk, POST_RATE_CHANGE, old_rate, clk->rate);
>
> + if (clk->flags & CLK_RECALC_NEW_RATES)
> + (void)clk_calc_new_rates(clk, clk->new_rate);
> +
> /*
> * Use safe iteration, as change_rate can actually swap parents
> * for certain clock types.
> diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h
> index 28abf1b..8d1aebe 100644
> --- a/include/linux/clk-provider.h
> +++ b/include/linux/clk-provider.h
> @@ -31,6 +31,7 @@
> #define CLK_GET_RATE_NOCACHE BIT(6) /* do not use the cached clk rate */
> #define CLK_SET_RATE_NO_REPARENT BIT(7) /* don't re-parent on rate change */
> #define CLK_GET_ACCURACY_NOCACHE BIT(8) /* do not use the cached clk accuracy */
> +#define CLK_RECALC_NEW_RATES BIT(9) /* recalc rates after notifications */
Mike, Stephen, what do you think about this? I'm rather resistant to
this new flag approach, it looks like a hack. I don't seem to have better
ideas to address the missing rate recalculation issue though.
I thought about making the cpu clk notifier callback returning a specific
error value, which would then trigger rate recalculation after
__clk_notify() call in clk_change_rate() function. This way the trigger
of the repeated rate recalculation would come from a notifier callback,
rather than from a clock definition. But in general it would be difficult
to handle multiple notification callbacks, each of which would attempt
to trigger the rate recalculation.
--
Regards,
Sylwester
WARNING: multiple messages have this Message-ID (diff)
From: s.nawrocki@samsung.com (Sylwester Nawrocki)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/6] clk: add CLK_RECALC_NEW_RATES clock flag for Exynos cpu clock support
Date: Wed, 13 May 2015 16:13:13 +0200 [thread overview]
Message-ID: <55535BF9.60609@samsung.com> (raw)
In-Reply-To: <1428079429-4252-2-git-send-email-b.zolnierkie@samsung.com>
On 03/04/15 18:43, Bartlomiej Zolnierkiewicz wrote:
> This flag is needed to fix the issue with wrong dividers being setup
> by Common Clock Framework when using the new Exynos cpu clock support.
>
> The issue happens because clk_core_set_rate_nolock() calls
> clk_calc_new_rates(clk, rate) before both pre/post clock notifiers have
> a chance to run. In case of Exynos cpu clock support pre/post clock
> notifiers are registered for mout_apll clock which is a parent of armclk
> cpu clock and dividers are modified in both pre and post clock notifier.
> This results in wrong dividers values being later programmed by
> clk_change_rate(top). To workaround the problem CLK_RECALC_NEW_RATES
> flag is added and it is set for mout_apll clock later so the correct
> divider values are re-calculated after both pre and post clock notifiers
> had run.
>
> For example when using "performance" governor on Exynos4210 Origen board
> the cpufreq-dt driver requests to change the frequency from 1000MHz to
> 1200MHz and after the change state of the relevant clocks is following:
>
> Without use of CLK_GET_RATE_NOCACHE flag:
>
> fout_apll rate: 1200000000
> fout_apll_div_2 rate: 600000000
> mout_clkout_cpu rate: 600000000
> div_clkout_cpu rate: 600000000
> clkout_cpu rate: 600000000
> mout_apll rate: 1200000000
> armclk rate: 1200000000
> mout_hpm rate: 1200000000
> div_copy rate: 300000000
> div_hpm rate: 300000000
> mout_core rate: 1200000000
> div_core rate: 1200000000
> div_core2 rate: 1200000000
> arm_clk_div_2 rate: 600000000
> div_corem0 rate: 300000000
> div_corem1 rate: 150000000
> div_periph rate: 300000000
> div_atb rate: 300000000
> div_pclk_dbg rate: 150000000
> sclk_apll rate: 1200000000
> sclk_apll_div_2 rate: 600000000
>
>
> With use of CLK_GET_RATE_NOCACHE flag:
>
> fout_apll rate: 1200000000
> fout_apll_div_2 rate: 600000000
> mout_clkout_cpu rate: 600000000
> div_clkout_cpu rate: 600000000
> clkout_cpu rate: 600000000
> mout_apll rate: 1200000000
> armclk rate: 1200000000
> mout_hpm rate: 1200000000
> div_copy rate: 200000000
> div_hpm rate: 200000000
> mout_core rate: 1200000000
> div_core rate: 1200000000
> div_core2 rate: 1200000000
> arm_clk_div_2 rate: 600000000
> div_corem0 rate: 300000000
> div_corem1 rate: 150000000
> div_periph rate: 300000000
> div_atb rate: 240000000
> div_pclk_dbg rate: 120000000
> sclk_apll rate: 150000000
> sclk_apll_div_2 rate: 75000000
>
> Without this change cpufreq-dt driver showed ~10 mA larger energy
> consumption when compared to cpufreq-exynos one when "performance"
> cpufreq governor was used on Exynos4210 SoC based Origen board.
>
> This issue was probably meant to be workarounded by use of
> CLK_GET_RATE_NOCACHE and CLK_DIVIDER_READ_ONLY clock flags in
> the original Exynos cpu clock patchset (in "[PATCH v12 6/6] clk:
> samsung: remove unused clock aliases and update clock flags" patch)
> but usage of these flags is not sufficient to fix the issue observed.
>
> Cc: Thomas Abraham <thomas.ab@samsung.com>
> Cc: Tomasz Figa <tomasz.figa@gmail.com>
> Cc: Mike Turquette <mturquette@linaro.org>
> Cc: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
> Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
> ---
> drivers/clk/clk.c | 3 +++
> include/linux/clk-provider.h | 1 +
> 2 files changed, 4 insertions(+)
>
> diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c
> index f85c8e2..97cc73e 100644
> --- a/drivers/clk/clk.c
> +++ b/drivers/clk/clk.c
> @@ -1771,6 +1771,9 @@ static void clk_change_rate(struct clk_core *clk)
> if (clk->notifier_count && old_rate != clk->rate)
> __clk_notify(clk, POST_RATE_CHANGE, old_rate, clk->rate);
>
> + if (clk->flags & CLK_RECALC_NEW_RATES)
> + (void)clk_calc_new_rates(clk, clk->new_rate);
> +
> /*
> * Use safe iteration, as change_rate can actually swap parents
> * for certain clock types.
> diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h
> index 28abf1b..8d1aebe 100644
> --- a/include/linux/clk-provider.h
> +++ b/include/linux/clk-provider.h
> @@ -31,6 +31,7 @@
> #define CLK_GET_RATE_NOCACHE BIT(6) /* do not use the cached clk rate */
> #define CLK_SET_RATE_NO_REPARENT BIT(7) /* don't re-parent on rate change */
> #define CLK_GET_ACCURACY_NOCACHE BIT(8) /* do not use the cached clk accuracy */
> +#define CLK_RECALC_NEW_RATES BIT(9) /* recalc rates after notifications */
Mike, Stephen, what do you think about this? I'm rather resistant to
this new flag approach, it looks like a hack. I don't seem to have better
ideas to address the missing rate recalculation issue though.
I thought about making the cpu clk notifier callback returning a specific
error value, which would then trigger rate recalculation after
__clk_notify() call in clk_change_rate() function. This way the trigger
of the repeated rate recalculation would come from a notifier callback,
rather than from a clock definition. But in general it would be difficult
to handle multiple notification callbacks, each of which would attempt
to trigger the rate recalculation.
--
Regards,
Sylwester
next prev parent reply other threads:[~2015-05-13 14:13 UTC|newest]
Thread overview: 96+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <'@samsung.com>
2015-04-03 16:43 ` [PATCH 0/6] cpufreq: use generic cpufreq drivers for Exynos4210 platform Bartlomiej Zolnierkiewicz
2015-04-03 16:43 ` Bartlomiej Zolnierkiewicz
2015-04-03 16:43 ` [PATCH 1/6] clk: add CLK_RECALC_NEW_RATES clock flag for Exynos cpu clock support Bartlomiej Zolnierkiewicz
2015-04-03 16:43 ` Bartlomiej Zolnierkiewicz
2015-05-13 14:13 ` Sylwester Nawrocki [this message]
2015-05-13 14:13 ` Sylwester Nawrocki
2015-06-18 19:58 ` Michael Turquette
2015-06-18 19:58 ` Michael Turquette
2015-06-19 11:19 ` Bartlomiej Zolnierkiewicz
2015-06-19 11:19 ` Bartlomiej Zolnierkiewicz
2015-06-19 11:19 ` Bartlomiej Zolnierkiewicz
2015-06-19 12:35 ` Bartlomiej Zolnierkiewicz
2015-06-19 12:35 ` Bartlomiej Zolnierkiewicz
2015-06-19 12:35 ` Bartlomiej Zolnierkiewicz
2015-06-19 14:53 ` Michael Turquette
2015-06-19 14:53 ` Michael Turquette
2015-06-20 10:01 ` Krzysztof Kozlowski
2015-06-20 10:01 ` Krzysztof Kozlowski
2015-06-20 10:01 ` Krzysztof Kozlowski
2015-06-20 19:13 ` Michael Turquette
2015-06-20 19:13 ` Michael Turquette
2015-06-20 19:13 ` Michael Turquette
2015-06-22 0:06 ` Krzysztof Kozlowski
2015-06-22 0:06 ` Krzysztof Kozlowski
2015-06-22 0:06 ` Krzysztof Kozlowski
2015-04-03 16:43 ` [PATCH 2/6] clk: samsung: add infrastructure to register cpu clocks Bartlomiej Zolnierkiewicz
2015-04-03 16:43 ` Bartlomiej Zolnierkiewicz
2015-04-03 16:43 ` [PATCH 3/6] clk: samsung: exynos4: add cpu clock configuration data and instantiate cpu clock Bartlomiej Zolnierkiewicz
2015-04-03 16:43 ` Bartlomiej Zolnierkiewicz
2015-04-03 16:43 ` [PATCH 4/6] ARM: dts: Exynos4210: add CPU OPP and regulator supply property Bartlomiej Zolnierkiewicz
2015-04-03 16:43 ` Bartlomiej Zolnierkiewicz
2015-05-08 0:18 ` Krzysztof Kozlowski
2015-05-08 0:18 ` Krzysztof Kozlowski
2015-06-22 0:31 ` Krzysztof Kozlowski
2015-06-22 0:31 ` Krzysztof Kozlowski
2015-06-22 0:31 ` Krzysztof Kozlowski
2015-06-22 1:38 ` Kukjin Kim
2015-06-22 1:38 ` Kukjin Kim
2015-06-22 1:38 ` Kukjin Kim
2015-06-22 1:42 ` Krzysztof Kozlowski
2015-06-22 1:42 ` Krzysztof Kozlowski
2015-06-22 1:42 ` Krzysztof Kozlowski
2015-06-22 1:46 ` Kukjin Kim
2015-06-22 1:46 ` Kukjin Kim
2015-06-22 1:46 ` Kukjin Kim
2015-06-22 15:04 ` Michael Turquette
2015-06-22 15:04 ` Michael Turquette
2015-06-22 15:04 ` Michael Turquette
2015-06-22 23:46 ` Krzysztof Kozlowski
2015-06-22 23:46 ` Krzysztof Kozlowski
2015-06-22 23:46 ` Krzysztof Kozlowski
2015-06-23 0:24 ` Krzysztof Kozlowski
2015-06-23 0:24 ` Krzysztof Kozlowski
2015-06-23 0:24 ` Krzysztof Kozlowski
2015-07-13 11:02 ` Bartlomiej Zolnierkiewicz
2015-07-13 11:02 ` Bartlomiej Zolnierkiewicz
2015-07-13 11:10 ` Krzysztof Kozlowski
2015-07-13 11:10 ` Krzysztof Kozlowski
2015-07-13 11:20 ` Bartlomiej Zolnierkiewicz
2015-07-13 11:20 ` Bartlomiej Zolnierkiewicz
2015-07-13 11:50 ` Krzysztof Kozlowski
2015-07-13 11:50 ` Krzysztof Kozlowski
2015-07-13 14:27 ` Bartlomiej Zolnierkiewicz
2015-07-13 14:27 ` Bartlomiej Zolnierkiewicz
2015-07-14 0:02 ` Krzysztof Kozlowski
2015-07-14 0:02 ` Krzysztof Kozlowski
2015-06-24 14:25 ` Bartlomiej Zolnierkiewicz
2015-06-24 14:25 ` Bartlomiej Zolnierkiewicz
2015-04-03 16:43 ` [PATCH 5/6] ARM: Exynos: switch to using generic cpufreq driver for Exynos4210 Bartlomiej Zolnierkiewicz
2015-04-03 16:43 ` Bartlomiej Zolnierkiewicz
2015-05-08 0:05 ` Krzysztof Kozlowski
2015-05-08 0:05 ` Krzysztof Kozlowski
2015-05-14 5:07 ` Viresh Kumar
2015-05-14 5:07 ` Viresh Kumar
2015-04-03 16:43 ` [PATCH 6/6] cpufreq: exynos: remove Exynos4210 specific cpufreq driver support Bartlomiej Zolnierkiewicz
2015-04-03 16:43 ` Bartlomiej Zolnierkiewicz
2015-05-14 5:03 ` Viresh Kumar
2015-05-14 5:03 ` Viresh Kumar
2015-05-13 14:08 ` [PATCH 0/6] cpufreq: use generic cpufreq drivers for Exynos4210 platform Bartlomiej Zolnierkiewicz
2015-05-13 14:08 ` Bartlomiej Zolnierkiewicz
2015-05-14 4:07 ` [PATCH 0/6] cpufreq: use generic cpufreq drivers for Exynos4210platform Kukjin Kim
2015-05-14 4:07 ` Kukjin Kim
2015-05-14 5:10 ` Viresh Kumar
2015-05-14 5:10 ` Viresh Kumar
2015-05-14 10:53 ` Bartlomiej Zolnierkiewicz
2015-05-14 10:53 ` Bartlomiej Zolnierkiewicz
2015-05-14 11:17 ` Viresh Kumar
2015-05-14 11:17 ` Viresh Kumar
2015-05-14 13:07 ` [PATCH 0/6] cpufreq: use generic cpufreq drivers forExynos4210platform Kukjin Kim
2015-05-14 13:07 ` Kukjin Kim
2015-06-03 23:22 ` Kukjin Kim
2015-06-03 23:22 ` Kukjin Kim
2015-06-18 17:53 ` Bartlomiej Zolnierkiewicz
2015-06-18 17:53 ` Bartlomiej Zolnierkiewicz
2015-06-18 17:55 ` Bartlomiej Zolnierkiewicz
2015-06-18 17:55 ` Bartlomiej Zolnierkiewicz
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=55535BF9.60609@samsung.com \
--to=s.nawrocki@samsung.com \
--cc=b.zolnierkie@samsung.com \
--cc=cw00.choi@samsung.com \
--cc=heiko@sntech.de \
--cc=javier.martinez@collabora.co.uk \
--cc=kgene@kernel.org \
--cc=khilman@linaro.org \
--cc=l.majewski@samsung.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=mturquette@linaro.org \
--cc=sboyd@codeaurora.org \
--cc=thomas.ab@samsung.com \
--cc=tomasz.figa@gmail.com \
--cc=viresh.kumar@linaro.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.