From: Michael Thalmeier <michael.thalmeier@hale.at>
To: Alessandro Zummo <a.zummo@towertech.it>,
Alexandre Belloni <alexandre.belloni@free-electrons.com>
Cc: linux-rtc@vger.kernel.org, linux-kernel@vger.kernel.org,
michael@thalmeier.at
Subject: [PATCH] rtc: rtc-stmp3xxx: detect power failure on backup power domain
Date: Thu, 18 May 2017 16:45:21 +0200 [thread overview]
Message-ID: <20170518144521.9294-1-michael.thalmeier@hale.at> (raw)
To detect when the backup power domain has lost power a software defined bit
is set in one of the general purpose persistent registers when writing a new
time into the rtc.
When reading the time this bit is checked to determine if a power fail has
happened since the last time the rtc time was set.
When we detect a power fail we return -ENODATA.
Signed-off-by: Michael Thalmeier <michael.thalmeier@hale.at>
---
drivers/rtc/rtc-stmp3xxx.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/drivers/rtc/rtc-stmp3xxx.c b/drivers/rtc/rtc-stmp3xxx.c
index d578e40..51330ec 100644
--- a/drivers/rtc/rtc-stmp3xxx.c
+++ b/drivers/rtc/rtc-stmp3xxx.c
@@ -62,6 +62,9 @@
/* missing bitmask in headers */
#define STMP3XXX_RTC_PERSISTENT1_FORCE_UPDATER 0x80000000
+#define STMP3XXX_RTC_PERSISTENT2 0x80
+#define STMP3XXX_RTC_PERSISTENT2_VALID_TIME 0x01
+
struct stmp3xxx_rtc_data {
struct rtc_device *rtc;
void __iomem *io;
@@ -160,6 +163,10 @@ static int stmp3xxx_rtc_gettime(struct device *dev, struct rtc_time *rtc_tm)
if (ret)
return ret;
+ if (!(readl(rtc_data->io + STMP3XXX_RTC_PERSISTENT2) &
+ STMP3XXX_RTC_PERSISTENT2_VALID_TIME))
+ return -ENODATA;
+
rtc_time_to_tm(readl(rtc_data->io + STMP3XXX_RTC_SECONDS), rtc_tm);
return 0;
}
@@ -169,6 +176,8 @@ static int stmp3xxx_rtc_set_mmss(struct device *dev, unsigned long t)
struct stmp3xxx_rtc_data *rtc_data = dev_get_drvdata(dev);
writel(t, rtc_data->io + STMP3XXX_RTC_SECONDS);
+ writel(STMP3XXX_RTC_PERSISTENT2_VALID_TIME,
+ rtc_data->io + STMP3XXX_RTC_PERSISTENT2 + STMP_OFFSET_REG_SET);
return stmp3xxx_wait_time(rtc_data);
}
--
2.9.2
next reply other threads:[~2017-05-18 14:53 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-05-18 14:45 Michael Thalmeier [this message]
2017-05-18 15:56 ` [PATCH] rtc: rtc-stmp3xxx: detect power failure on backup power domain Alexandre Belloni
2017-06-07 13:05 ` Michael Thalmeier
2017-07-29 22:38 ` Alexandre Belloni
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=20170518144521.9294-1-michael.thalmeier@hale.at \
--to=michael.thalmeier@hale.at \
--cc=a.zummo@towertech.it \
--cc=alexandre.belloni@free-electrons.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rtc@vger.kernel.org \
--cc=michael@thalmeier.at \
/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