blob: d8a23b89ba738e60e015d20f6cd0199198fed33c [file] [log] [blame]
Alexandre Bellonibc400722019-03-20 13:40:41 +01001// SPDX-License-Identifier: GPL-2.0+
David Brownell4cdf8542008-02-06 01:38:59 -08002/*
3 * "RTT as Real Time Clock" driver for AT91SAM9 SoC family
4 *
5 * (C) 2007 Michel Benoit
6 *
7 * Based on rtc-at91rm9200.c by Rick Bronson
David Brownell4cdf8542008-02-06 01:38:59 -08008 */
9
Alexandre Belloni6932ff52015-07-28 21:49:24 +020010#include <linux/clk.h>
David Brownell4cdf8542008-02-06 01:38:59 -080011#include <linux/interrupt.h>
12#include <linux/ioctl.h>
Jingoo Han9d42e462013-04-29 16:20:35 -070013#include <linux/io.h>
Alexandre Belloni6932ff52015-07-28 21:49:24 +020014#include <linux/kernel.h>
Boris BREZILLON43e112b2014-09-23 13:14:44 +020015#include <linux/mfd/syscon.h>
Alexandre Belloni6932ff52015-07-28 21:49:24 +020016#include <linux/module.h>
Alexandre Belloni1955f212015-08-10 16:33:39 +020017#include <linux/of.h>
Alexandre Belloni6932ff52015-07-28 21:49:24 +020018#include <linux/platform_device.h>
Boris BREZILLON43e112b2014-09-23 13:14:44 +020019#include <linux/regmap.h>
Alexandre Belloni6932ff52015-07-28 21:49:24 +020020#include <linux/rtc.h>
21#include <linux/slab.h>
Boris BREZILLON603b1a22015-03-02 10:18:14 +010022#include <linux/suspend.h>
Alexandre Belloni6932ff52015-07-28 21:49:24 +020023#include <linux/time.h>
David Brownell4cdf8542008-02-06 01:38:59 -080024
David Brownell4cdf8542008-02-06 01:38:59 -080025/*
26 * This driver uses two configurable hardware resources that live in the
27 * AT91SAM9 backup power domain (intended to be powered at all times)
28 * to implement the Real Time Clock interfaces
29 *
30 * - A "Real-time Timer" (RTT) counts up in seconds from a base time.
31 * We can't assign the counter value (CRTV) ... but we can reset it.
32 *
33 * - One of the "General Purpose Backup Registers" (GPBRs) holds the
34 * base time, normally an offset from the beginning of the POSIX
35 * epoch (1970-Jan-1 00:00:00 UTC). Some systems also include the
36 * local timezone's offset.
37 *
38 * The RTC's value is the RTT counter plus that offset. The RTC's alarm
39 * is likewise a base (ALMV) plus that offset.
40 *
41 * Not all RTTs will be used as RTCs; some systems have multiple RTTs to
42 * choose from, or a "real" RTC module. All systems have multiple GPBR
43 * registers available, likewise usable for more than "RTC" support.
44 */
45
Boris BREZILLON6575bd72014-09-23 13:13:29 +020046#define AT91_RTT_MR 0x00 /* Real-time Mode Register */
47#define AT91_RTT_RTPRES (0xffff << 0) /* Real-time Timer Prescaler Value */
48#define AT91_RTT_ALMIEN (1 << 16) /* Alarm Interrupt Enable */
49#define AT91_RTT_RTTINCIEN (1 << 17) /* Real Time Timer Increment Interrupt Enable */
50#define AT91_RTT_RTTRST (1 << 18) /* Real Time Timer Restart */
51
52#define AT91_RTT_AR 0x04 /* Real-time Alarm Register */
53#define AT91_RTT_ALMV (0xffffffff) /* Alarm Value */
54
55#define AT91_RTT_VR 0x08 /* Real-time Value Register */
56#define AT91_RTT_CRTV (0xffffffff) /* Current Real-time Value */
57
58#define AT91_RTT_SR 0x0c /* Real-time Status Register */
59#define AT91_RTT_ALMS (1 << 0) /* Real-time Alarm Status */
60#define AT91_RTT_RTTINC (1 << 1) /* Real-time Timer Increment */
61
David Brownell4cdf8542008-02-06 01:38:59 -080062/*
63 * We store ALARM_DISABLED in ALMV to record that no alarm is set.
64 * It's also the reset value for that field.
65 */
66#define ALARM_DISABLED ((u32)~0)
67
68
69struct sam9_rtc {
70 void __iomem *rtt;
71 struct rtc_device *rtcdev;
72 u32 imr;
Boris BREZILLON43e112b2014-09-23 13:14:44 +020073 struct regmap *gpbr;
74 unsigned int gpbr_offset;
Ludovic Desrochese402af62012-08-14 11:19:22 +020075 int irq;
Boris BREZILLONa975f472014-09-23 16:41:07 +020076 struct clk *sclk;
Boris BREZILLON603b1a22015-03-02 10:18:14 +010077 bool suspended;
78 unsigned long events;
79 spinlock_t lock;
David Brownell4cdf8542008-02-06 01:38:59 -080080};
81
82#define rtt_readl(rtc, field) \
Boris BREZILLON272f1df2014-09-23 13:13:52 +020083 readl((rtc)->rtt + AT91_RTT_ ## field)
David Brownell4cdf8542008-02-06 01:38:59 -080084#define rtt_writel(rtc, field, val) \
Boris BREZILLON272f1df2014-09-23 13:13:52 +020085 writel((val), (rtc)->rtt + AT91_RTT_ ## field)
David Brownell4cdf8542008-02-06 01:38:59 -080086
Boris BREZILLON43e112b2014-09-23 13:14:44 +020087static inline unsigned int gpbr_readl(struct sam9_rtc *rtc)
88{
89 unsigned int val;
90
91 regmap_read(rtc->gpbr, rtc->gpbr_offset, &val);
92
93 return val;
94}
95
96static inline void gpbr_writel(struct sam9_rtc *rtc, unsigned int val)
97{
98 regmap_write(rtc->gpbr, rtc->gpbr_offset, val);
99}
David Brownell4cdf8542008-02-06 01:38:59 -0800100
101/*
102 * Read current time and date in RTC
103 */
104static int at91_rtc_readtime(struct device *dev, struct rtc_time *tm)
105{
106 struct sam9_rtc *rtc = dev_get_drvdata(dev);
107 u32 secs, secs2;
108 u32 offset;
109
110 /* read current time offset */
111 offset = gpbr_readl(rtc);
112 if (offset == 0)
113 return -EILSEQ;
114
115 /* reread the counter to help sync the two clock domains */
116 secs = rtt_readl(rtc, VR);
117 secs2 = rtt_readl(rtc, VR);
118 if (secs != secs2)
119 secs = rtt_readl(rtc, VR);
120
Alexandre Belloni8af760a2019-03-20 13:40:40 +0100121 rtc_time64_to_tm(offset + secs, tm);
David Brownell4cdf8542008-02-06 01:38:59 -0800122
Andy Shevchenko285166c2018-12-04 23:23:14 +0200123 dev_dbg(dev, "%s: %ptR\n", __func__, tm);
David Brownell4cdf8542008-02-06 01:38:59 -0800124
125 return 0;
126}
127
128/*
129 * Set current time and date in RTC
130 */
131static int at91_rtc_settime(struct device *dev, struct rtc_time *tm)
132{
133 struct sam9_rtc *rtc = dev_get_drvdata(dev);
David Brownell4cdf8542008-02-06 01:38:59 -0800134 u32 offset, alarm, mr;
135 unsigned long secs;
136
Andy Shevchenko285166c2018-12-04 23:23:14 +0200137 dev_dbg(dev, "%s: %ptR\n", __func__, tm);
David Brownell4cdf8542008-02-06 01:38:59 -0800138
Alexandre Belloni8af760a2019-03-20 13:40:40 +0100139 secs = rtc_tm_to_time64(tm);
David Brownell4cdf8542008-02-06 01:38:59 -0800140
141 mr = rtt_readl(rtc, MR);
142
143 /* disable interrupts */
144 rtt_writel(rtc, MR, mr & ~(AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN));
145
146 /* read current time offset */
147 offset = gpbr_readl(rtc);
148
149 /* store the new base time in a battery backup register */
150 secs += 1;
151 gpbr_writel(rtc, secs);
152
153 /* adjust the alarm time for the new base */
154 alarm = rtt_readl(rtc, AR);
155 if (alarm != ALARM_DISABLED) {
156 if (offset > secs) {
157 /* time jumped backwards, increase time until alarm */
158 alarm += (offset - secs);
159 } else if ((alarm + offset) > secs) {
160 /* time jumped forwards, decrease time until alarm */
161 alarm -= (secs - offset);
162 } else {
163 /* time jumped past the alarm, disable alarm */
164 alarm = ALARM_DISABLED;
165 mr &= ~AT91_RTT_ALMIEN;
166 }
167 rtt_writel(rtc, AR, alarm);
168 }
169
170 /* reset the timer, and re-enable interrupts */
171 rtt_writel(rtc, MR, mr | AT91_RTT_RTTRST);
172
173 return 0;
174}
175
176static int at91_rtc_readalarm(struct device *dev, struct rtc_wkalrm *alrm)
177{
178 struct sam9_rtc *rtc = dev_get_drvdata(dev);
179 struct rtc_time *tm = &alrm->time;
180 u32 alarm = rtt_readl(rtc, AR);
181 u32 offset;
182
183 offset = gpbr_readl(rtc);
184 if (offset == 0)
185 return -EILSEQ;
186
Julia Lawall870a2762010-03-05 13:44:23 -0800187 memset(alrm, 0, sizeof(*alrm));
David Brownell4cdf8542008-02-06 01:38:59 -0800188 if (alarm != ALARM_DISABLED && offset != 0) {
Alexandre Belloni8af760a2019-03-20 13:40:40 +0100189 rtc_time64_to_tm(offset + alarm, tm);
David Brownell4cdf8542008-02-06 01:38:59 -0800190
Andy Shevchenko285166c2018-12-04 23:23:14 +0200191 dev_dbg(dev, "%s: %ptR\n", __func__, tm);
David Brownell4cdf8542008-02-06 01:38:59 -0800192
193 if (rtt_readl(rtc, MR) & AT91_RTT_ALMIEN)
194 alrm->enabled = 1;
195 }
196
197 return 0;
198}
199
200static int at91_rtc_setalarm(struct device *dev, struct rtc_wkalrm *alrm)
201{
202 struct sam9_rtc *rtc = dev_get_drvdata(dev);
203 struct rtc_time *tm = &alrm->time;
204 unsigned long secs;
205 u32 offset;
206 u32 mr;
David Brownell4cdf8542008-02-06 01:38:59 -0800207
Alexandre Belloni8af760a2019-03-20 13:40:40 +0100208 secs = rtc_tm_to_time64(tm);
David Brownell4cdf8542008-02-06 01:38:59 -0800209
210 offset = gpbr_readl(rtc);
211 if (offset == 0) {
212 /* time is not set */
213 return -EILSEQ;
214 }
215 mr = rtt_readl(rtc, MR);
216 rtt_writel(rtc, MR, mr & ~AT91_RTT_ALMIEN);
217
218 /* alarm in the past? finish and leave disabled */
219 if (secs <= offset) {
220 rtt_writel(rtc, AR, ALARM_DISABLED);
221 return 0;
222 }
223
224 /* else set alarm and maybe enable it */
225 rtt_writel(rtc, AR, secs - offset);
226 if (alrm->enabled)
227 rtt_writel(rtc, MR, mr | AT91_RTT_ALMIEN);
228
Andy Shevchenko285166c2018-12-04 23:23:14 +0200229 dev_dbg(dev, "%s: %ptR\n", __func__, tm);
David Brownell4cdf8542008-02-06 01:38:59 -0800230
231 return 0;
232}
233
John Stultz16380c12011-02-02 17:02:41 -0800234static int at91_rtc_alarm_irq_enable(struct device *dev, unsigned int enabled)
235{
236 struct sam9_rtc *rtc = dev_get_drvdata(dev);
237 u32 mr = rtt_readl(rtc, MR);
238
239 dev_dbg(dev, "alarm_irq_enable: enabled=%08x, mr %08x\n", enabled, mr);
240 if (enabled)
241 rtt_writel(rtc, MR, mr | AT91_RTT_ALMIEN);
242 else
243 rtt_writel(rtc, MR, mr & ~AT91_RTT_ALMIEN);
244 return 0;
245}
246
David Brownell4cdf8542008-02-06 01:38:59 -0800247/*
248 * Provide additional RTC information in /proc/driver/rtc
249 */
250static int at91_rtc_proc(struct device *dev, struct seq_file *seq)
251{
252 struct sam9_rtc *rtc = dev_get_drvdata(dev);
Colin Ian Kingdf2d7412016-03-28 12:24:00 +0100253 u32 mr = rtt_readl(rtc, MR);
David Brownell4cdf8542008-02-06 01:38:59 -0800254
255 seq_printf(seq, "update_IRQ\t: %s\n",
256 (mr & AT91_RTT_RTTINCIEN) ? "yes" : "no");
257 return 0;
258}
259
Boris BREZILLON603b1a22015-03-02 10:18:14 +0100260static irqreturn_t at91_rtc_cache_events(struct sam9_rtc *rtc)
David Brownell4cdf8542008-02-06 01:38:59 -0800261{
David Brownell4cdf8542008-02-06 01:38:59 -0800262 u32 sr, mr;
David Brownell4cdf8542008-02-06 01:38:59 -0800263
264 /* Shared interrupt may be for another device. Note: reading
265 * SR clears it, so we must only read it in this irq handler!
266 */
267 mr = rtt_readl(rtc, MR) & (AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN);
David Brownell9fedc9f2008-03-19 17:01:09 -0700268 sr = rtt_readl(rtc, SR) & (mr >> 16);
David Brownell4cdf8542008-02-06 01:38:59 -0800269 if (!sr)
270 return IRQ_NONE;
271
272 /* alarm status */
273 if (sr & AT91_RTT_ALMS)
Boris BREZILLON603b1a22015-03-02 10:18:14 +0100274 rtc->events |= (RTC_AF | RTC_IRQF);
David Brownell4cdf8542008-02-06 01:38:59 -0800275
276 /* timer update/increment */
277 if (sr & AT91_RTT_RTTINC)
Boris BREZILLON603b1a22015-03-02 10:18:14 +0100278 rtc->events |= (RTC_UF | RTC_IRQF);
David Brownell4cdf8542008-02-06 01:38:59 -0800279
280 return IRQ_HANDLED;
281}
282
Boris BREZILLON603b1a22015-03-02 10:18:14 +0100283static void at91_rtc_flush_events(struct sam9_rtc *rtc)
284{
285 if (!rtc->events)
286 return;
287
288 rtc_update_irq(rtc->rtcdev, 1, rtc->events);
289 rtc->events = 0;
290
291 pr_debug("%s: num=%ld, events=0x%02lx\n", __func__,
292 rtc->events >> 8, rtc->events & 0x000000FF);
293}
294
295/*
296 * IRQ handler for the RTC
297 */
298static irqreturn_t at91_rtc_interrupt(int irq, void *_rtc)
299{
300 struct sam9_rtc *rtc = _rtc;
301 int ret;
302
303 spin_lock(&rtc->lock);
304
305 ret = at91_rtc_cache_events(rtc);
306
307 /* We're called in suspended state */
308 if (rtc->suspended) {
309 /* Mask irqs coming from this peripheral */
310 rtt_writel(rtc, MR,
311 rtt_readl(rtc, MR) &
312 ~(AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN));
313 /* Trigger a system wakeup */
314 pm_system_wakeup();
315 } else {
316 at91_rtc_flush_events(rtc);
317 }
318
319 spin_unlock(&rtc->lock);
320
321 return ret;
322}
323
David Brownell4cdf8542008-02-06 01:38:59 -0800324static const struct rtc_class_ops at91_rtc_ops = {
David Brownell4cdf8542008-02-06 01:38:59 -0800325 .read_time = at91_rtc_readtime,
326 .set_time = at91_rtc_settime,
327 .read_alarm = at91_rtc_readalarm,
328 .set_alarm = at91_rtc_setalarm,
329 .proc = at91_rtc_proc,
Jelle Martijn Kokd4035852011-02-25 11:13:55 -0800330 .alarm_irq_enable = at91_rtc_alarm_irq_enable,
David Brownell4cdf8542008-02-06 01:38:59 -0800331};
332
333/*
334 * Initialize and install RTC driver
335 */
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800336static int at91_rtc_probe(struct platform_device *pdev)
David Brownell4cdf8542008-02-06 01:38:59 -0800337{
Boris BREZILLONd41da3e2014-09-23 13:14:09 +0200338 struct resource *r;
David Brownell4cdf8542008-02-06 01:38:59 -0800339 struct sam9_rtc *rtc;
Ludovic Desrochese402af62012-08-14 11:19:22 +0200340 int ret, irq;
David Brownell4cdf8542008-02-06 01:38:59 -0800341 u32 mr;
Boris BREZILLONa975f472014-09-23 16:41:07 +0200342 unsigned int sclk_rate;
Alexandre Belloni1a76a772019-03-20 13:40:37 +0100343 struct of_phandle_args args;
David Brownell4cdf8542008-02-06 01:38:59 -0800344
Ludovic Desrochese402af62012-08-14 11:19:22 +0200345 irq = platform_get_irq(pdev, 0);
346 if (irq < 0) {
347 dev_err(&pdev->dev, "failed to get interrupt resource\n");
348 return irq;
349 }
350
Jingoo Han9d42e462013-04-29 16:20:35 -0700351 rtc = devm_kzalloc(&pdev->dev, sizeof(*rtc), GFP_KERNEL);
David Brownell4cdf8542008-02-06 01:38:59 -0800352 if (!rtc)
353 return -ENOMEM;
354
Wei Yongjunb7b17632016-07-25 07:05:11 +0000355 spin_lock_init(&rtc->lock);
Ludovic Desrochese402af62012-08-14 11:19:22 +0200356 rtc->irq = irq;
357
David Brownell9fedc9f2008-03-19 17:01:09 -0700358 /* platform setup code should have handled this; sigh */
359 if (!device_can_wakeup(&pdev->dev))
360 device_init_wakeup(&pdev->dev, 1);
361
David Brownell4cdf8542008-02-06 01:38:59 -0800362 platform_set_drvdata(pdev, rtc);
David Brownell4cdf8542008-02-06 01:38:59 -0800363
Boris BREZILLONd41da3e2014-09-23 13:14:09 +0200364 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
365 rtc->rtt = devm_ioremap_resource(&pdev->dev, r);
366 if (IS_ERR(rtc->rtt))
367 return PTR_ERR(rtc->rtt);
368
Alexandre Belloni1a76a772019-03-20 13:40:37 +0100369 ret = of_parse_phandle_with_fixed_args(pdev->dev.of_node,
370 "atmel,rtt-rtc-time-reg", 1, 0,
371 &args);
372 if (ret)
373 return ret;
Boris BREZILLON43e112b2014-09-23 13:14:44 +0200374
Alexandre Belloni1a76a772019-03-20 13:40:37 +0100375 rtc->gpbr = syscon_node_to_regmap(args.np);
376 rtc->gpbr_offset = args.args[0];
Boris BREZILLON43e112b2014-09-23 13:14:44 +0200377 if (IS_ERR(rtc->gpbr)) {
378 dev_err(&pdev->dev, "failed to retrieve gpbr regmap, aborting.\n");
379 return -ENOMEM;
380 }
Jean-Christophe PLAGNIOL-VILLARDb3af8b42012-02-15 21:24:46 +0800381
Boris BREZILLONa975f472014-09-23 16:41:07 +0200382 rtc->sclk = devm_clk_get(&pdev->dev, NULL);
383 if (IS_ERR(rtc->sclk))
384 return PTR_ERR(rtc->sclk);
385
Boris BREZILLONa975f472014-09-23 16:41:07 +0200386 ret = clk_prepare_enable(rtc->sclk);
387 if (ret) {
388 dev_err(&pdev->dev, "Could not enable slow clock\n");
389 return ret;
390 }
391
Alexandre Belloni8918bd82015-07-28 21:51:10 +0200392 sclk_rate = clk_get_rate(rtc->sclk);
393 if (!sclk_rate || sclk_rate > AT91_RTT_RTPRES) {
394 dev_err(&pdev->dev, "Invalid slow clock rate\n");
395 ret = -EINVAL;
396 goto err_clk;
397 }
398
David Brownell4cdf8542008-02-06 01:38:59 -0800399 mr = rtt_readl(rtc, MR);
400
401 /* unless RTT is counting at 1 Hz, re-initialize it */
Boris BREZILLONa975f472014-09-23 16:41:07 +0200402 if ((mr & AT91_RTT_RTPRES) != sclk_rate) {
403 mr = AT91_RTT_RTTRST | (sclk_rate & AT91_RTT_RTPRES);
David Brownell4cdf8542008-02-06 01:38:59 -0800404 gpbr_writel(rtc, 0);
405 }
406
407 /* disable all interrupts (same as on shutdown path) */
408 mr &= ~(AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN);
409 rtt_writel(rtc, MR, mr);
410
Alexandre Belloni6c7293e2019-03-20 13:40:38 +0100411 rtc->rtcdev = devm_rtc_allocate_device(&pdev->dev);
Alexandre Belloniffe60fc2015-07-28 21:46:15 +0200412 if (IS_ERR(rtc->rtcdev)) {
413 ret = PTR_ERR(rtc->rtcdev);
414 goto err_clk;
415 }
David Brownell4cdf8542008-02-06 01:38:59 -0800416
Alexandre Belloni6c7293e2019-03-20 13:40:38 +0100417 rtc->rtcdev->ops = &at91_rtc_ops;
Alexandre Belloni255c43c2019-03-20 13:40:39 +0100418 rtc->rtcdev->range_max = U32_MAX;
Alexandre Belloni6c7293e2019-03-20 13:40:38 +0100419
David Brownell4cdf8542008-02-06 01:38:59 -0800420 /* register irq handler after we know what name we'll use */
Jingoo Han9d42e462013-04-29 16:20:35 -0700421 ret = devm_request_irq(&pdev->dev, rtc->irq, at91_rtc_interrupt,
Boris BREZILLON603b1a22015-03-02 10:18:14 +0100422 IRQF_SHARED | IRQF_COND_SUSPEND,
423 dev_name(&rtc->rtcdev->dev), rtc);
David Brownell4cdf8542008-02-06 01:38:59 -0800424 if (ret) {
Ludovic Desrochese402af62012-08-14 11:19:22 +0200425 dev_dbg(&pdev->dev, "can't share IRQ %d?\n", rtc->irq);
Alexandre Belloniffe60fc2015-07-28 21:46:15 +0200426 goto err_clk;
David Brownell4cdf8542008-02-06 01:38:59 -0800427 }
428
429 /* NOTE: sam9260 rev A silicon has a ROM bug which resets the
430 * RTT on at least some reboots. If you have that chip, you must
431 * initialize the time from some external source like a GPS, wall
432 * clock, discrete RTC, etc
433 */
434
435 if (gpbr_readl(rtc) == 0)
436 dev_warn(&pdev->dev, "%s: SET TIME!\n",
Kay Sievers744bcb12009-03-24 16:38:22 -0700437 dev_name(&rtc->rtcdev->dev));
David Brownell4cdf8542008-02-06 01:38:59 -0800438
Alexandre Belloni6c7293e2019-03-20 13:40:38 +0100439 return rtc_register_device(rtc->rtcdev);
Alexandre Belloniffe60fc2015-07-28 21:46:15 +0200440
441err_clk:
442 clk_disable_unprepare(rtc->sclk);
443
444 return ret;
David Brownell4cdf8542008-02-06 01:38:59 -0800445}
446
447/*
448 * Disable and remove the RTC driver
449 */
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800450static int at91_rtc_remove(struct platform_device *pdev)
David Brownell4cdf8542008-02-06 01:38:59 -0800451{
452 struct sam9_rtc *rtc = platform_get_drvdata(pdev);
453 u32 mr = rtt_readl(rtc, MR);
454
455 /* disable all interrupts */
456 rtt_writel(rtc, MR, mr & ~(AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN));
David Brownell4cdf8542008-02-06 01:38:59 -0800457
Alexandre Belloni73ab31c2015-07-28 21:47:57 +0200458 clk_disable_unprepare(rtc->sclk);
Boris BREZILLONa975f472014-09-23 16:41:07 +0200459
David Brownell4cdf8542008-02-06 01:38:59 -0800460 return 0;
461}
462
463static void at91_rtc_shutdown(struct platform_device *pdev)
464{
465 struct sam9_rtc *rtc = platform_get_drvdata(pdev);
466 u32 mr = rtt_readl(rtc, MR);
467
468 rtc->imr = mr & (AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN);
469 rtt_writel(rtc, MR, mr & ~rtc->imr);
470}
471
Jingoo Han4dc8eb12013-04-29 16:20:58 -0700472#ifdef CONFIG_PM_SLEEP
David Brownell4cdf8542008-02-06 01:38:59 -0800473
474/* AT91SAM9 RTC Power management control */
475
Jingoo Han4dc8eb12013-04-29 16:20:58 -0700476static int at91_rtc_suspend(struct device *dev)
David Brownell4cdf8542008-02-06 01:38:59 -0800477{
Jingoo Han4dc8eb12013-04-29 16:20:58 -0700478 struct sam9_rtc *rtc = dev_get_drvdata(dev);
David Brownell4cdf8542008-02-06 01:38:59 -0800479 u32 mr = rtt_readl(rtc, MR);
480
481 /*
482 * This IRQ is shared with DBGU and other hardware which isn't
483 * necessarily a wakeup event source.
484 */
485 rtc->imr = mr & (AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN);
486 if (rtc->imr) {
Jingoo Han4dc8eb12013-04-29 16:20:58 -0700487 if (device_may_wakeup(dev) && (mr & AT91_RTT_ALMIEN)) {
Boris BREZILLON603b1a22015-03-02 10:18:14 +0100488 unsigned long flags;
489
Ludovic Desrochese402af62012-08-14 11:19:22 +0200490 enable_irq_wake(rtc->irq);
Boris BREZILLON603b1a22015-03-02 10:18:14 +0100491 spin_lock_irqsave(&rtc->lock, flags);
492 rtc->suspended = true;
493 spin_unlock_irqrestore(&rtc->lock, flags);
David Brownell4cdf8542008-02-06 01:38:59 -0800494 /* don't let RTTINC cause wakeups */
495 if (mr & AT91_RTT_RTTINCIEN)
496 rtt_writel(rtc, MR, mr & ~AT91_RTT_RTTINCIEN);
497 } else
498 rtt_writel(rtc, MR, mr & ~rtc->imr);
499 }
500
501 return 0;
502}
503
Jingoo Han4dc8eb12013-04-29 16:20:58 -0700504static int at91_rtc_resume(struct device *dev)
David Brownell4cdf8542008-02-06 01:38:59 -0800505{
Jingoo Han4dc8eb12013-04-29 16:20:58 -0700506 struct sam9_rtc *rtc = dev_get_drvdata(dev);
David Brownell4cdf8542008-02-06 01:38:59 -0800507 u32 mr;
508
509 if (rtc->imr) {
Boris BREZILLON603b1a22015-03-02 10:18:14 +0100510 unsigned long flags;
511
Jingoo Han4dc8eb12013-04-29 16:20:58 -0700512 if (device_may_wakeup(dev))
Ludovic Desrochese402af62012-08-14 11:19:22 +0200513 disable_irq_wake(rtc->irq);
David Brownell4cdf8542008-02-06 01:38:59 -0800514 mr = rtt_readl(rtc, MR);
515 rtt_writel(rtc, MR, mr | rtc->imr);
Boris BREZILLON603b1a22015-03-02 10:18:14 +0100516
517 spin_lock_irqsave(&rtc->lock, flags);
518 rtc->suspended = false;
519 at91_rtc_cache_events(rtc);
520 at91_rtc_flush_events(rtc);
521 spin_unlock_irqrestore(&rtc->lock, flags);
David Brownell4cdf8542008-02-06 01:38:59 -0800522 }
523
524 return 0;
525}
David Brownell4cdf8542008-02-06 01:38:59 -0800526#endif
527
Jingoo Han4dc8eb12013-04-29 16:20:58 -0700528static SIMPLE_DEV_PM_OPS(at91_rtc_pm_ops, at91_rtc_suspend, at91_rtc_resume);
529
Boris BREZILLON07d4d722014-09-23 13:14:24 +0200530static const struct of_device_id at91_rtc_dt_ids[] = {
531 { .compatible = "atmel,at91sam9260-rtt" },
532 { /* sentinel */ }
533};
534MODULE_DEVICE_TABLE(of, at91_rtc_dt_ids);
Boris BREZILLON07d4d722014-09-23 13:14:24 +0200535
David Brownell4cdf8542008-02-06 01:38:59 -0800536static struct platform_driver at91_rtc_driver = {
Jean-Christophe PLAGNIOL-VILLARD205056a2012-02-15 20:51:37 +0800537 .probe = at91_rtc_probe,
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800538 .remove = at91_rtc_remove,
David Brownell4cdf8542008-02-06 01:38:59 -0800539 .shutdown = at91_rtc_shutdown,
Jean-Christophe PLAGNIOL-VILLARD205056a2012-02-15 20:51:37 +0800540 .driver = {
541 .name = "rtc-at91sam9",
Jingoo Han4dc8eb12013-04-29 16:20:58 -0700542 .pm = &at91_rtc_pm_ops,
Boris BREZILLON07d4d722014-09-23 13:14:24 +0200543 .of_match_table = of_match_ptr(at91_rtc_dt_ids),
Jean-Christophe PLAGNIOL-VILLARD205056a2012-02-15 20:51:37 +0800544 },
David Brownell4cdf8542008-02-06 01:38:59 -0800545};
546
Devendra Naga477d30d2012-10-04 17:13:54 -0700547module_platform_driver(at91_rtc_driver);
David Brownell4cdf8542008-02-06 01:38:59 -0800548
549MODULE_AUTHOR("Michel Benoit");
550MODULE_DESCRIPTION("RTC driver for Atmel AT91SAM9x");
551MODULE_LICENSE("GPL");