From: Daniel Lezcano <daniel.lezcano@linaro.org>
To: Linus Walleij <linus.walleij@linaro.org>,
Thomas Gleixner <tglx@linutronix.de>
Cc: linux-kernel@vger.kernel.org, "Cédric Le Goater" <clg@kaod.org>,
"Joel Stanley" <joel@jms.id.au>
Subject: Re: [PATCH 2/2] clocksource/drivers/fttmr010: Be stricter on IRQs
Date: Fri, 20 Aug 2021 10:53:22 +0200 [thread overview]
Message-ID: <e997cca5-e6d4-1aac-4e0c-de15d7664a1b@linaro.org> (raw)
In-Reply-To: <20210724224424.2085404-2-linus.walleij@linaro.org>
On 25/07/2021 00:44, Linus Walleij wrote:
> Make sure we check that the right interrupt occurred before
> calling the event handler for timer 1. Report spurious IRQs
> as IRQ_NONE.
Does it not mean there is something wrong with the initial setup ?
> Cc: Cédric Le Goater <clg@kaod.org>
> Cc: Joel Stanley <joel@jms.id.au>
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> ---
> drivers/clocksource/timer-fttmr010.c | 32 +++++++++++++++++++++-------
> 1 file changed, 24 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/clocksource/timer-fttmr010.c b/drivers/clocksource/timer-fttmr010.c
> index 126fb1f259b2..de29d424ec95 100644
> --- a/drivers/clocksource/timer-fttmr010.c
> +++ b/drivers/clocksource/timer-fttmr010.c
> @@ -253,20 +253,36 @@ static int fttmr010_timer_set_periodic(struct clock_event_device *evt)
> */
> static irqreturn_t fttmr010_timer_interrupt(int irq, void *dev_id)
> {
> - struct clock_event_device *evt = dev_id;
> + struct fttmr010 *fttmr010 = dev_id;
> + struct clock_event_device *evt = &fttmr010->clkevt;
> + u32 val;
> +
> + val = readl(fttmr010->base + TIMER_INTR_STATE);
> + if (val & (TIMER_1_INT_MATCH1 | TIMER_1_INT_OVERFLOW))
> + evt->event_handler(evt);
> + else
> + /* Spurious IRQ */
> + return IRQ_NONE;
>
> - evt->event_handler(evt);
> return IRQ_HANDLED;
> }
>
> static irqreturn_t ast2600_timer_interrupt(int irq, void *dev_id)
> {
> - struct clock_event_device *evt = dev_id;
> - struct fttmr010 *fttmr010 = to_fttmr010(evt);
> + struct fttmr010 *fttmr010 = dev_id;
> + struct clock_event_device *evt = &fttmr010->clkevt;
> + u32 val;
>
> - writel(0x1, fttmr010->base + TIMER_INTR_STATE);
> + val = readl(fttmr010->base + TIMER_INTR_STATE);
> + if (val & (TIMER_1_INT_MATCH1 | TIMER_1_INT_OVERFLOW)) {
> + writel(TIMER_1_INT_MATCH1, fttmr010->base + TIMER_INTR_STATE);
> + evt->event_handler(evt);
> + } else {
> + /* Just clear any spurious IRQs from the block */
> + writel(val, fttmr010->base + TIMER_INTR_STATE);
> + return IRQ_NONE;
> + }
>
> - evt->event_handler(evt);
> return IRQ_HANDLED;
> }
>
> @@ -384,12 +400,12 @@ static int __init fttmr010_common_init(struct device_node *np,
> fttmr010->timer_shutdown = ast2600_timer_shutdown;
> ret = request_irq(irq, ast2600_timer_interrupt,
> IRQF_TIMER, "FTTMR010-TIMER1",
> - &fttmr010->clkevt);
> + fttmr010);
> } else {
> fttmr010->timer_shutdown = fttmr010_timer_shutdown;
> ret = request_irq(irq, fttmr010_timer_interrupt,
> IRQF_TIMER, "FTTMR010-TIMER1",
> - &fttmr010->clkevt);
> + fttmr010);
> }
> if (ret) {
> pr_err("FTTMR010-TIMER1 no IRQ\n");
>
--
<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:[~2021-08-20 8:53 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-07-24 22:44 [PATCH 1/2] clocksource/drivers/fttmr010: Pass around less pointers Linus Walleij
2021-07-24 22:44 ` [PATCH 2/2] clocksource/drivers/fttmr010: Be stricter on IRQs Linus Walleij
2021-08-20 8:53 ` Daniel Lezcano [this message]
2021-08-20 13:39 ` Linus Walleij
2021-08-20 14:16 ` Daniel Lezcano
2021-08-21 4:20 ` Guenter Roeck
2021-08-21 8:04 ` Daniel Lezcano
2021-08-27 22:01 ` Linus Walleij
2021-08-27 22:31 ` Guenter Roeck
2021-08-28 3:37 ` Guenter Roeck
2021-08-28 8:08 ` Cédric Le Goater
2021-08-30 4:16 ` Andrew Jeffery
2021-08-30 4:58 ` [PATCH 2/2]: Be stric clocksource/drivers/fttmr010ter " Guenter Roeck
2021-08-30 6:30 ` Andrew Jeffery
2021-08-30 7:47 ` [PATCH 2/2]: Be stric clocksource/drivers/fttmr010 " Cédric Le Goater
2021-08-30 15:24 ` Guenter Roeck
2021-09-01 23:38 ` [PATCH 2/2] clocksource/drivers/fttmr010: Be stricter " Joel Stanley
2021-08-26 16:25 ` [tip: timers/core] clocksource/drivers/fttmr010: Pass around less pointers tip-bot2 for Linus Walleij
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=e997cca5-e6d4-1aac-4e0c-de15d7664a1b@linaro.org \
--to=daniel.lezcano@linaro.org \
--cc=clg@kaod.org \
--cc=joel@jms.id.au \
--cc=linus.walleij@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=tglx@linutronix.de \
/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
all inboxes | Powered by JetHome®