From: nicolas.ferre@atmel.com (Nicolas Ferre)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v3 3/3] ARM: at91/rtc: disable interrupts at shutdown
Date: Fri, 15 Nov 2013 11:43:08 +0100 [thread overview]
Message-ID: <5285FABC.2080005@atmel.com> (raw)
In-Reply-To: <1381917376-21107-4-git-send-email-jhovold@gmail.com>
On 16/10/2013 11:56, Johan Hovold :
> Make sure RTC-interrupts are disabled at shutdown.
>
> As the RTC is generally powered by backup power (VDDBU), its interrupts
> are not disabled on wake-up, user, watchdog or software reset. This
> could cause troubles on other systems (e.g. older kernels) if an
> interrupt occurs before a handler has been installed at next boot.
>
> Let us be well-behaved and disable them on clean shutdowns at least (as
> do the RTT-based rtc-at91sam9 driver).
>
> Signed-off-by: Johan Hovold <jhovold@gmail.com>
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Thank you Johan.
Andrew, could you add this patch to your rtc queue or should I re-send it ?
Best regards,
> ---
> drivers/rtc/rtc-at91rm9200.c | 9 +++++++++
> 1 file changed, 9 insertions(+)
>
> diff --git a/drivers/rtc/rtc-at91rm9200.c b/drivers/rtc/rtc-at91rm9200.c
> index 7418926..ea088e9 100644
> --- a/drivers/rtc/rtc-at91rm9200.c
> +++ b/drivers/rtc/rtc-at91rm9200.c
> @@ -442,6 +442,14 @@ static int __exit at91_rtc_remove(struct platform_device *pdev)
> return 0;
> }
>
> +static void at91_rtc_shutdown(struct platform_device *pdev)
> +{
> + /* Disable all interrupts */
> + at91_rtc_write(AT91_RTC_IDR, AT91_RTC_ACKUPD | AT91_RTC_ALARM |
> + AT91_RTC_SECEV | AT91_RTC_TIMEV |
> + AT91_RTC_CALEV);
> +}
> +
> #ifdef CONFIG_PM_SLEEP
>
> /* AT91RM9200 RTC Power management control */
> @@ -480,6 +488,7 @@ static SIMPLE_DEV_PM_OPS(at91_rtc_pm_ops, at91_rtc_suspend, at91_rtc_resume);
>
> static struct platform_driver at91_rtc_driver = {
> .remove = __exit_p(at91_rtc_remove),
> + .shutdown = at91_rtc_shutdown,
> .driver = {
> .name = "at91_rtc",
> .owner = THIS_MODULE,
>
--
Nicolas Ferre
WARNING: multiple messages have this Message-ID (diff)
From: Nicolas Ferre <nicolas.ferre@atmel.com>
To: Johan Hovold <jhovold@gmail.com>, <rtc-linux@googlegroups.com>,
"Andrew Morton" <akpm@linux-foundation.org>
Cc: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>,
Andrew Victor <linux@maxim.org.za>,
Alessandro Zummo <a.zummo@towertech.it>,
<linux-arm-kernel@lists.infradead.org>,
<linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v3 3/3] ARM: at91/rtc: disable interrupts at shutdown
Date: Fri, 15 Nov 2013 11:43:08 +0100 [thread overview]
Message-ID: <5285FABC.2080005@atmel.com> (raw)
In-Reply-To: <1381917376-21107-4-git-send-email-jhovold@gmail.com>
On 16/10/2013 11:56, Johan Hovold :
> Make sure RTC-interrupts are disabled at shutdown.
>
> As the RTC is generally powered by backup power (VDDBU), its interrupts
> are not disabled on wake-up, user, watchdog or software reset. This
> could cause troubles on other systems (e.g. older kernels) if an
> interrupt occurs before a handler has been installed at next boot.
>
> Let us be well-behaved and disable them on clean shutdowns at least (as
> do the RTT-based rtc-at91sam9 driver).
>
> Signed-off-by: Johan Hovold <jhovold@gmail.com>
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Thank you Johan.
Andrew, could you add this patch to your rtc queue or should I re-send it ?
Best regards,
> ---
> drivers/rtc/rtc-at91rm9200.c | 9 +++++++++
> 1 file changed, 9 insertions(+)
>
> diff --git a/drivers/rtc/rtc-at91rm9200.c b/drivers/rtc/rtc-at91rm9200.c
> index 7418926..ea088e9 100644
> --- a/drivers/rtc/rtc-at91rm9200.c
> +++ b/drivers/rtc/rtc-at91rm9200.c
> @@ -442,6 +442,14 @@ static int __exit at91_rtc_remove(struct platform_device *pdev)
> return 0;
> }
>
> +static void at91_rtc_shutdown(struct platform_device *pdev)
> +{
> + /* Disable all interrupts */
> + at91_rtc_write(AT91_RTC_IDR, AT91_RTC_ACKUPD | AT91_RTC_ALARM |
> + AT91_RTC_SECEV | AT91_RTC_TIMEV |
> + AT91_RTC_CALEV);
> +}
> +
> #ifdef CONFIG_PM_SLEEP
>
> /* AT91RM9200 RTC Power management control */
> @@ -480,6 +488,7 @@ static SIMPLE_DEV_PM_OPS(at91_rtc_pm_ops, at91_rtc_suspend, at91_rtc_resume);
>
> static struct platform_driver at91_rtc_driver = {
> .remove = __exit_p(at91_rtc_remove),
> + .shutdown = at91_rtc_shutdown,
> .driver = {
> .name = "at91_rtc",
> .owner = THIS_MODULE,
>
--
Nicolas Ferre
next prev parent reply other threads:[~2013-11-15 10:43 UTC|newest]
Thread overview: 50+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-03-08 12:51 [PATCH 0/3] ARM: at91: fix hanged boot Johan Hovold
2013-03-08 12:51 ` Johan Hovold
2013-03-08 12:51 ` [PATCH 1/3] ARM: at91/rtc: fix boot after RTC wake-up Johan Hovold
2013-03-08 12:51 ` Johan Hovold
2013-03-08 12:51 ` [PATCH 2/3] Revert "arm: at91: move at91rm9200 rtc header in drivers/rtc" Johan Hovold
2013-03-08 12:51 ` Johan Hovold
2013-03-08 12:51 ` [PATCH 3/3] ARM: at91: fix hanged boot Johan Hovold
2013-03-08 12:51 ` Johan Hovold
2013-03-08 16:02 ` [rtc-linux] " Jean-Christophe PLAGNIOL-VILLARD
2013-03-08 16:02 ` Jean-Christophe PLAGNIOL-VILLARD
2013-03-11 10:02 ` Johan Hovold
2013-03-11 10:02 ` Johan Hovold
2013-03-11 11:06 ` Jean-Christophe PLAGNIOL-VILLARD
2013-03-11 11:06 ` Jean-Christophe PLAGNIOL-VILLARD
2013-03-11 18:06 ` Johan Hovold
2013-03-11 18:06 ` Johan Hovold
2013-03-11 18:07 ` [PATCH v2 0/5] " Johan Hovold
2013-03-11 18:07 ` Johan Hovold
2013-03-11 18:07 ` [PATCH v2 1/5] ARM: at91/rtc: fix boot after RTC wake-up Johan Hovold
2013-03-11 18:07 ` Johan Hovold
2013-03-11 18:07 ` [PATCH v2 2/5] ARM: at91/dts: add RTC nodes Johan Hovold
2013-03-11 18:07 ` Johan Hovold
2013-03-11 18:07 ` [PATCH v2 3/5] ARM: at91/dts: add RTT nodes Johan Hovold
2013-03-11 18:07 ` Johan Hovold
2013-03-11 18:07 ` [PATCH v2 4/5] Revert "arm: at91: move at91rm9200 rtc header in drivers/rtc" Johan Hovold
2013-03-11 18:07 ` Johan Hovold
2013-03-11 18:07 ` [PATCH v2 5/5] ARM: at91: fix hanged boot Johan Hovold
2013-03-11 18:07 ` Johan Hovold
2013-04-11 15:55 ` [PATCH v2 0/5] " Johan Hovold
2013-04-11 15:55 ` Johan Hovold
2013-04-11 16:54 ` [rtc-linux] " Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 16:54 ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-12 9:33 ` Johan Hovold
2013-04-12 9:33 ` Johan Hovold
2013-04-12 12:09 ` Nicolas Ferre
2013-04-12 12:09 ` Nicolas Ferre
2013-10-16 9:56 ` [PATCH v3 0/3] " Johan Hovold
2013-10-16 9:56 ` Johan Hovold
2013-10-16 9:56 ` [PATCH v3 1/3] ARM: at91: fix hanged boot due to early rtc-interrupt Johan Hovold
2013-10-16 9:56 ` Johan Hovold
2013-11-15 11:09 ` Nicolas Ferre
2013-11-15 11:09 ` Nicolas Ferre
2013-10-16 9:56 ` [PATCH v3 2/3] ARM: at91: fix hanged boot due to early rtt-interrupt Johan Hovold
2013-10-16 9:56 ` Johan Hovold
2013-11-15 11:10 ` Nicolas Ferre
2013-11-15 11:10 ` Nicolas Ferre
2013-10-16 9:56 ` [PATCH v3 3/3] ARM: at91/rtc: disable interrupts at shutdown Johan Hovold
2013-10-16 9:56 ` Johan Hovold
2013-11-15 10:43 ` Nicolas Ferre [this message]
2013-11-15 10:43 ` Nicolas Ferre
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=5285FABC.2080005@atmel.com \
--to=nicolas.ferre@atmel.com \
--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.