Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1367501
| From | Daniel Lezcano <daniel.lezcano@linaro.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] arm: at91: do not disable/enable clocks in a row |
| Date | 2016-03-30 20:10 +0200 |
| Message-ID | <risJ3-Lt-1@gated-at.bofh.it> (permalink) |
| References | <ri1Sz-6PD-9@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On 03/29/2016 03:26 PM, Sebastian Andrzej Siewior wrote:
> Currently the driver will disable the clock and enable it one line later
> if it is switching from periodic mode into one shot.
> This can be avoided and causes a needless warning on -RT.
I don't see the connection between the description and the content of
the patch.
It can be avoided by not disabling the clock when going to periodic /
oneshot.
The function below suggest clk_enable() is called twice, is that the
real issue ?
> Tested-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
> Acked-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
> Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
> ---
> drivers/clocksource/tcb_clksrc.c | 33 +++++++++++++++++++++++++++++----
> 1 file changed, 29 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/clocksource/tcb_clksrc.c b/drivers/clocksource/tcb_clksrc.c
> index 4da2af9694a2..ed1ae4445e8d 100644
> --- a/drivers/clocksource/tcb_clksrc.c
> +++ b/drivers/clocksource/tcb_clksrc.c
> @@ -74,6 +74,7 @@ static struct clocksource clksrc = {
> struct tc_clkevt_device {
> struct clock_event_device clkevt;
> struct clk *clk;
> + bool clk_enabled;
> void __iomem *regs;
> };
>
> @@ -91,6 +92,24 @@ static struct tc_clkevt_device *to_tc_clkevt(struct clock_event_device *clkevt)
> */
> static u32 timer_clock;
>
> +static void tc_clk_disable(struct clock_event_device *d)
> +{
> + struct tc_clkevt_device *tcd = to_tc_clkevt(d);
> +
> + clk_disable(tcd->clk);
> + tcd->clk_enabled = false;
> +}
> +
> +static void tc_clk_enable(struct clock_event_device *d)
> +{
> + struct tc_clkevt_device *tcd = to_tc_clkevt(d);
> +
> + if (tcd->clk_enabled)
> + return;
> + clk_enable(tcd->clk);
> + tcd->clk_enabled = true;
> +}
This function.
--
<http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs
Follow Linaro: <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH] arm: at91: do not disable/enable clocks in a row Sebastian Andrzej Siewior <bigeasy@linutronix.de> - 2016-03-29 15:30 +0200 Re: [PATCH] arm: at91: do not disable/enable clocks in a row Nicolas Ferre <nicolas.ferre@atmel.com> - 2016-03-29 15:40 +0200 Re: [PATCH] arm: at91: do not disable/enable clocks in a row Daniel Lezcano <daniel.lezcano@linaro.org> - 2016-03-30 20:10 +0200
csiph-web