From: Alexandre Belloni <alexandre.belloni@free-electrons.com>
To: Huang Adrian <adrianhuang0701@gmail.com>
Cc: Alessandro Zummo <a.zummo@towertech.it>,
rtc-linux@googlegroups.com, Borislav Petkov <bp@suse.de>,
Thomas Gleixner <tglx@linutronix.de>,
John Stultz <john.stultz@linaro.org>,
Diego Ercolani <diego.ercolani@gmail.com>,
Egbert Eich <eich@suse.com>, Max Asbock <amax@lenovo.com>,
Nagananda Chumbalkar <nchumbalkar@lenovo.com>,
Adrian Huang <ahuang12@lenovo.com>
Subject: [rtc-linux] Re: [RFC PATCH v2 1/2] rtc-cmos: Clear interrupt flag if alarm time is
Date: Mon, 29 Jun 2015 11:44:56 +0200 [thread overview]
Message-ID: <20150629094456.GZ485@piout.net> (raw)
In-Reply-To: <CAHKZfL1+qi=OV6cO=KVzvVV52tD554U6USSSa9cwHbpAS6TobA@mail.gmail.com>
On 26/06/2015 at 14:01:48 +0800, Huang Adrian wrote :
> I created the following patch based on your suggestion. Does it looks good
> to you? If it does, I'll prepare v3 for testing. Thanks in advance.
>
Seems good to me.
> diff --git a/drivers/rtc/rtc-cmos.c b/drivers/rtc/rtc-cmos.c
> index a82556a..f8900aa 100644
> --- a/drivers/rtc/rtc-cmos.c
> +++ b/drivers/rtc/rtc-cmos.c
> @@ -51,6 +51,7 @@ struct cmos_rtc {
> struct device *dev;
> int irq;
> struct resource *iomem;
> + time64_t alarm_expires;
>
> void (*wake_on)(struct device *);
> void (*wake_off)(struct device *);
> @@ -377,6 +378,8 @@ static int cmos_set_alarm(struct device *dev,
> struct rtc_wkalrm *t)
>
> spin_unlock_irq(&rtc_lock);
>
> + cmos->alarm_expires = rtc_tm_to_time64(&t->time);
> +
> return 0;
> }
>
> @@ -860,6 +863,52 @@ static void __exit cmos_do_remove(struct device *dev)
> cmos->dev = NULL;
> }
>
> +static int cmos_aie_poweroff(struct device *dev)
> +{
> + struct cmos_rtc *cmos = dev_get_drvdata(dev);
> + struct rtc_time now;
> + time64_t t_now;
> + int retval = 0;
> + unsigned char rtc_control;
> +
> + if (!cmos->alarm_expires)
> + return -EINVAL;
> +
> + spin_lock_irq(&rtc_lock);
> + rtc_control = CMOS_READ(RTC_CONTROL);
> + spin_unlock_irq(&rtc_lock);
> +
> + /* We only care about the situation where AIE is disabled. */
> + if (rtc_control & RTC_AIE)
> + return -EBUSY;
> +
> + cmos_read_time(dev, &now);
> + t_now = rtc_tm_to_time64(&now);
> +
> + /*
> + * When enabling "RTC wake-up" in BIOS setup, the machine reboots
> + * automatically right after shutdown on some buggy boxes.
> + * This automatic rebooting issue won't happen when the alarm
> + * time is larger than now+1 seconds.
> + *
> + * If the alarm time is equal to now+1 seconds, the issue can be
> + * prevented by cancelling the alarm.
> + */
> + if (cmos->alarm_expires == t_now + 1) {
> + struct rtc_wkalrm alarm;
> + int err;
> +
> + /* Cancel the AIE timer by configuring the past time. */
> + rtc_time64_to_tm(t_now - 1, &alarm.time);
> + alarm.enabled = 0;
> + retval = cmos_set_alarm(dev, &alarm);
> + } else if (cmos->alarm_expires > t_now + 1) {
> + retval = -EBUSY;
> + }
> +
> + return retval;
> +}
> +
> #ifdef CONFIG_PM
>
> static int cmos_suspend(struct device *dev)
> @@ -1094,8 +1143,12 @@ static void cmos_pnp_shutdown(struct pnp_dev *pnp)
> struct device *dev = &pnp->dev;
> struct cmos_rtc *cmos = dev_get_drvdata(dev);
>
> - if (system_state == SYSTEM_POWER_OFF && !cmos_poweroff(dev))
> - return;
> + if (system_state == SYSTEM_POWER_OFF) {
> + int retval = cmos_poweroff(dev);
> +
> + if (cmos_aie_poweroff(dev) < 0 && !retval)
> + return;
> + }
>
> cmos_do_shutdown(cmos->irq);
> }
> @@ -1200,8 +1253,12 @@ static void cmos_platform_shutdown(struct
> platform_device *pdev)
> struct device *dev = &pdev->dev;
> struct cmos_rtc *cmos = dev_get_drvdata(dev);
>
> - if (system_state == SYSTEM_POWER_OFF && !cmos_poweroff(dev))
> - return;
> + if (system_state == SYSTEM_POWER_OFF) {
> + int retval = cmos_poweroff(dev);
> +
> + if (cmos_aie_poweroff(dev) < 0 && !retval)
> + return;
> + }
>
> cmos_do_shutdown(cmos->irq);
> }
> --
> 1.9.1
--
Alexandre Belloni, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
--
--
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
---
You received this message because you are subscribed to the Google Groups "rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rtc-linux+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
next prev parent reply other threads:[~2015-06-29 9:44 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-06-09 10:23 [rtc-linux] [RFC PATCH v2 0/2] rtc: Prevent the automatic reboot after powering off the system Adrian Huang
2015-06-09 10:23 ` [rtc-linux] [RFC PATCH v2 1/2] rtc-cmos: Clear interrupt flag if alarm time is Adrian Huang
2015-06-10 5:51 ` [rtc-linux] " Huang Adrian
2015-06-10 7:22 ` Diego Ercolani
2015-06-14 22:37 ` Alexandre Belloni
2015-06-26 6:01 ` Huang Adrian
2015-06-29 9:44 ` Alexandre Belloni [this message]
2015-06-09 10:23 ` [rtc-linux] [RFC PATCH v2 2/2] rtc-cmos: Revert "rtc-cmos: Add an alarm disable quirk" Adrian Huang
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=20150629094456.GZ485@piout.net \
--to=alexandre.belloni@free-electrons.com \
--cc=a.zummo@towertech.it \
--cc=adrianhuang0701@gmail.com \
--cc=ahuang12@lenovo.com \
--cc=amax@lenovo.com \
--cc=bp@suse.de \
--cc=diego.ercolani@gmail.com \
--cc=eich@suse.com \
--cc=john.stultz@linaro.org \
--cc=nchumbalkar@lenovo.com \
--cc=rtc-linux@googlegroups.com \
--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