From: daniel.lezcano@linaro.org (Daniel Lezcano)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] arm: at91: do not disable/enable clocks in a row
Date: Wed, 30 Mar 2016 20:06:52 +0200 [thread overview]
Message-ID: <56FC15BC.9010708@linaro.org> (raw)
In-Reply-To: <1459258007-24968-1-git-send-email-bigeasy@linutronix.de>
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
WARNING: multiple messages have this Message-ID (diff)
From: Daniel Lezcano <daniel.lezcano@linaro.org>
To: Sebastian Andrzej Siewior <bigeasy@linutronix.de>,
Nicolas Ferre <nicolas.ferre@atmel.com>
Cc: Thomas Gleixner <tglx@linutronix.de>,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] arm: at91: do not disable/enable clocks in a row
Date: Wed, 30 Mar 2016 20:06:52 +0200 [thread overview]
Message-ID: <56FC15BC.9010708@linaro.org> (raw)
In-Reply-To: <1459258007-24968-1-git-send-email-bigeasy@linutronix.de>
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
next prev parent reply other threads:[~2016-03-30 18:06 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-29 13:26 [PATCH] arm: at91: do not disable/enable clocks in a row Sebastian Andrzej Siewior
2016-03-29 13:26 ` Sebastian Andrzej Siewior
2016-03-29 13:32 ` Nicolas Ferre
2016-03-29 13:32 ` Nicolas Ferre
2016-03-30 18:06 ` Daniel Lezcano [this message]
2016-03-30 18:06 ` Daniel Lezcano
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=56FC15BC.9010708@linaro.org \
--to=daniel.lezcano@linaro.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 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.