From: Alexandre Belloni <alexandre.belloni@free-electrons.com>
To: Daniel Lezcano <daniel.lezcano@linaro.org>
Cc: Nicolas Ferre <nicolas.ferre@atmel.com>,
Boris Brezillon <boris.brezillon@free-electrons.com>,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org,
Thomas Gleixner <tglx@linutronix.de>,
Thierry Reding <thierry.reding@gmail.com>,
linux-pwm@vger.kernel.org
Subject: Re: [PATCH v3 4/4] misc: atmel_tclib: get and use slow clock
Date: Tue, 11 Aug 2015 17:27:24 +0200 [thread overview]
Message-ID: <20150811152724.GR3411@piout.net> (raw)
In-Reply-To: <55C9FB5D.7030607@linaro.org>
On 11/08/2015 at 15:40:45 +0200, Daniel Lezcano wrote :
> On 08/11/2015 11:38 AM, Alexandre Belloni wrote:
> >From: Boris Brezillon <boris.brezillon@free-electrons.com>
> >
> >Commit dca1a4b5ff6e ("clk: at91: keep slow clk enabled to prevent system
> >hang") added a workaround for the slow clock as it is not properly handled
> >by its users.
> >
> >Get and use the slow clock as it is necessary for the timer counters.
> >
> >Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
> >Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
> >Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> >---
> >Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
> >Cc: Thomas Gleixner <tglx@linutronix.de>
> >Cc: Thierry Reding <thierry.reding@gmail.com>
> >Cc: linux-pwm@vger.kernel.org
> >
> > drivers/clocksource/tcb_clksrc.c | 8 ++++++++
> > drivers/misc/atmel_tclib.c | 4 ++++
> > drivers/pwm/pwm-atmel-tcb.c | 23 ++++++++++++++++-------
> > include/linux/atmel_tc.h | 1 +
> > 4 files changed, 29 insertions(+), 7 deletions(-)
> >
> >diff --git a/drivers/clocksource/tcb_clksrc.c b/drivers/clocksource/tcb_clksrc.c
> >index b9b7277173c2..969ba03633b0 100644
> >--- a/drivers/clocksource/tcb_clksrc.c
> >+++ b/drivers/clocksource/tcb_clksrc.c
> >@@ -188,6 +188,13 @@ static int __init setup_clkevents(struct atmel_tc *tc, int clk32k_divisor_idx)
> > ret = clk_prepare_enable(t2_clk);
> > if (ret)
> > return ret;
> >+
> >+ ret = clk_prepare_enable(tc->slow_clk);
> >+ if (ret) {
> >+ clk_disable_unprepare(t2_clk);
> >+ return ret;
> >+ }
> >+
> > clk_disable(t2_clk);
>
> Do you need t2_clk to be enabled in order to enable tc->slow_clk ?
No, I'll move clk_prepare_enable for tc->slow_clk before t2_clk.
> >+
> >+err_free_tc:
> >+ atmel_tc_free(tc);
> >+
> >+ return err;
>
> What about clk_unprepare_disable(tc->slow_clk) ?
>
Indeed, I trusted Boris a bit too much ;)
--
Alexandre Belloni, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
prev parent reply other threads:[~2015-08-11 15:27 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-08-11 9:38 [PATCH v3 0/4] ARM: at91: Properly handle slow clock Alexandre Belloni
2015-08-11 9:38 ` [PATCH v3 1/4] watchdog: at91sam9: get and use " Alexandre Belloni
2015-08-11 9:38 ` [PATCH v3 2/4] clocksource: atmel-st: " Alexandre Belloni
2015-08-11 13:27 ` Daniel Lezcano
2015-08-11 9:38 ` [PATCH v3 3/4] clocksource: tcb_clksrc: fix setup_clkevents error path Alexandre Belloni
2015-08-11 13:27 ` Daniel Lezcano
2015-08-11 9:38 ` [PATCH v3 4/4] misc: atmel_tclib: get and use slow clock Alexandre Belloni
2015-08-11 13:40 ` Daniel Lezcano
2015-08-11 15:27 ` Alexandre Belloni [this message]
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=20150811152724.GR3411@piout.net \
--to=alexandre.belloni@free-electrons.com \
--cc=boris.brezillon@free-electrons.com \
--cc=daniel.lezcano@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pwm@vger.kernel.org \
--cc=nicolas.ferre@atmel.com \
--cc=tglx@linutronix.de \
--cc=thierry.reding@gmail.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox