blob: e39e89867d293e104eaa6f1d30f4cdf643299395 [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
Alexandre Bellonibe8bf982019-03-20 13:40:42 +010046#define AT91_RTT_MR 0x00 /* Real-time Mode Register */
47#define AT91_RTT_RTPRES (0xffff << 0) /* Timer Prescaler Value */
48#define AT91_RTT_ALMIEN BIT(16) /* Alarm Interrupt Enable */
49#define AT91_RTT_RTTINCIEN BIT(17) /* Increment Interrupt Enable */
50#define AT91_RTT_RTTRST BIT(18) /* Timer Restart */
Boris BREZILLON6575bd72014-09-23 13:13:29 +020051
Alexandre Bellonibe8bf982019-03-20 13:40:42 +010052#define AT91_RTT_AR 0x04 /* Real-time Alarm Register */
53#define AT91_RTT_ALMV (0xffffffff) /* Alarm Value */
Boris BREZILLON6575bd72014-09-23 13:13:29 +020054
Alexandre Bellonibe8bf982019-03-20 13:40:42 +010055#define AT91_RTT_VR 0x08 /* Real-time Value Register */
56#define AT91_RTT_CRTV (0xffffffff) /* Current Real-time Value */
Boris BREZILLON6575bd72014-09-23 13:13:29 +020057
Alexandre Bellonibe8bf982019-03-20 13:40:42 +010058#define AT91_RTT_SR 0x0c /* Real-time Status Register */
59#define AT91_RTT_ALMS BIT(0) /* Alarm Status */
60#define AT91_RTT_RTTINC BIT(1) /* Timer Increment */
Boris BREZILLON6575bd72014-09-23 13:13:29 +020061
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
David Brownell4cdf8542008-02-06 01:38:59 -080068struct sam9_rtc {
69 void __iomem *rtt;
70 struct rtc_device *rtcdev;
71 u32 imr;
Boris BREZILLON43e112b2014-09-23 13:14:44 +020072 struct regmap *gpbr;
73 unsigned int gpbr_offset;
Alexandre Bellonibe8bf982019-03-20 13:40:42 +010074 int irq;
Boris BREZILLONa975f472014-09-23 16:41:07 +020075 struct clk *sclk;
Boris BREZILLON603b1a22015-03-02 10:18:14 +010076 bool suspended;
77 unsigned long events;
78 spinlock_t lock;
David Brownell4cdf8542008-02-06 01:38:59 -080079};
80
81#define rtt_readl(rtc, field) \
Boris BREZILLON272f1df2014-09-23 13:13:52 +020082 readl((rtc)->rtt + AT91_RTT_ ## field)
David Brownell4cdf8542008-02-06 01:38:59 -080083#define rtt_writel(rtc, field, val) \
Boris BREZILLON272f1df2014-09-23 13:13:52 +020084 writel((val), (rtc)->rtt + AT91_RTT_ ## field)
David Brownell4cdf8542008-02-06 01:38:59 -080085
Boris BREZILLON43e112b2014-09-23 13:14:44 +020086static inline unsigned int gpbr_readl(struct sam9_rtc *rtc)
87{
88 unsigned int val;
89
90 regmap_read(rtc->gpbr, rtc->gpbr_offset, &val);
91
92 return val;
93}
94
95static inline void gpbr_writel(struct sam9_rtc *rtc, unsigned int val)
96{
97 regmap_write(rtc->gpbr, rtc->gpbr_offset, val);
98}
David Brownell4cdf8542008-02-06 01:38:59 -080099
100/*
101 * Read current time and date in RTC
102 */
103static int at91_rtc_readtime(struct device *dev, struct rtc_time *tm)
104{
105 struct sam9_rtc *rtc = dev_get_drvdata(dev);
106 u32 secs, secs2;
107 u32 offset;
108
109 /* read current time offset */
110 offset = gpbr_readl(rtc);
111 if (offset == 0)
112 return -EILSEQ;
113
114 /* reread the counter to help sync the two clock domains */
115 secs = rtt_readl(rtc, VR);
116 secs2 = rtt_readl(rtc, VR);
117 if (secs != secs2)
118 secs = rtt_readl(rtc, VR);
119
Alexandre Belloni8af760a2019-03-20 13:40:40 +0100120 rtc_time64_to_tm(offset + secs, tm);
David Brownell4cdf8542008-02-06 01:38:59 -0800121
Andy Shevchenko285166c2018-12-04 23:23:14 +0200122 dev_dbg(dev, "%s: %ptR\n", __func__, tm);
David Brownell4cdf8542008-02-06 01:38:59 -0800123
124 return 0;
125}
126
127/*
128 * Set current time and date in RTC
129 */
130static int at91_rtc_settime(struct device *dev, struct rtc_time *tm)
131{
132 struct sam9_rtc *rtc = dev_get_drvdata(dev);
David Brownell4cdf8542008-02-06 01:38:59 -0800133 u32 offset, alarm, mr;
134 unsigned long secs;
135
Andy Shevchenko285166c2018-12-04 23:23:14 +0200136 dev_dbg(dev, "%s: %ptR\n", __func__, tm);
David Brownell4cdf8542008-02-06 01:38:59 -0800137
Alexandre Belloni8af760a2019-03-20 13:40:40 +0100138 secs = rtc_tm_to_time64(tm);
David Brownell4cdf8542008-02-06 01:38:59 -0800139
140 mr = rtt_readl(rtc, MR);
141
142 /* disable interrupts */
143 rtt_writel(rtc, MR, mr & ~(AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN));
144
145 /* read current time offset */
146 offset = gpbr_readl(rtc);
147
148 /* store the new base time in a battery backup register */
149 secs += 1;
150 gpbr_writel(rtc, secs);
151
152 /* adjust the alarm time for the new base */
153 alarm = rtt_readl(rtc, AR);
154 if (alarm != ALARM_DISABLED) {
155 if (offset > secs) {
156 /* time jumped backwards, increase time until alarm */
157 alarm += (offset - secs);
158 } else if ((alarm + offset) > secs) {
159 /* time jumped forwards, decrease time until alarm */
160 alarm -= (secs - offset);
161 } else {
162 /* time jumped past the alarm, disable alarm */
163 alarm = ALARM_DISABLED;
164 mr &= ~AT91_RTT_ALMIEN;
165 }
166 rtt_writel(rtc, AR, alarm);
167 }
168
169 /* reset the timer, and re-enable interrupts */
170 rtt_writel(rtc, MR, mr | AT91_RTT_RTTRST);
171
172 return 0;
173}
174
175static int at91_rtc_readalarm(struct device *dev, struct rtc_wkalrm *alrm)
176{
177 struct sam9_rtc *rtc = dev_get_drvdata(dev);
178 struct rtc_time *tm = &alrm->time;
179 u32 alarm = rtt_readl(rtc, AR);
180 u32 offset;
181
182 offset = gpbr_readl(rtc);
183 if (offset == 0)
184 return -EILSEQ;
185
Julia Lawall870a2762010-03-05 13:44:23 -0800186 memset(alrm, 0, sizeof(*alrm));
David Brownell4cdf8542008-02-06 01:38:59 -0800187 if (alarm != ALARM_DISABLED && offset != 0) {
Alexandre Belloni8af760a2019-03-20 13:40:40 +0100188 rtc_time64_to_tm(offset + alarm, tm);
David Brownell4cdf8542008-02-06 01:38:59 -0800189
Andy Shevchenko285166c2018-12-04 23:23:14 +0200190 dev_dbg(dev, "%s: %ptR\n", __func__, tm);
David Brownell4cdf8542008-02-06 01:38:59 -0800191
192 if (rtt_readl(rtc, MR) & AT91_RTT_ALMIEN)
193 alrm->enabled = 1;
194 }
195
196 return 0;
197}
198
199static int at91_rtc_setalarm(struct device *dev, struct rtc_wkalrm *alrm)
200{
201 struct sam9_rtc *rtc = dev_get_drvdata(dev);
202 struct rtc_time *tm = &alrm->time;
203 unsigned long secs;
204 u32 offset;
205 u32 mr;
David Brownell4cdf8542008-02-06 01:38:59 -0800206
Alexandre Belloni8af760a2019-03-20 13:40:40 +0100207 secs = rtc_tm_to_time64(tm);
David Brownell4cdf8542008-02-06 01:38:59 -0800208
209 offset = gpbr_readl(rtc);
210 if (offset == 0) {
211 /* time is not set */
212 return -EILSEQ;
213 }
214 mr = rtt_readl(rtc, MR);
215 rtt_writel(rtc, MR, mr & ~AT91_RTT_ALMIEN);
216
217 /* alarm in the past? finish and leave disabled */
218 if (secs <= offset) {
219 rtt_writel(rtc, AR, ALARM_DISABLED);
220 return 0;
221 }
222
223 /* else set alarm and maybe enable it */
224 rtt_writel(rtc, AR, secs - offset);
225 if (alrm->enabled)
226 rtt_writel(rtc, MR, mr | AT91_RTT_ALMIEN);
227
Andy Shevchenko285166c2018-12-04 23:23:14 +0200228 dev_dbg(dev, "%s: %ptR\n", __func__, tm);
David Brownell4cdf8542008-02-06 01:38:59 -0800229
230 return 0;
231}
232
John Stultz16380c12011-02-02 17:02:41 -0800233static int at91_rtc_alarm_irq_enable(struct device *dev, unsigned int enabled)
234{
235 struct sam9_rtc *rtc = dev_get_drvdata(dev);
236 u32 mr = rtt_readl(rtc, MR);
237
238 dev_dbg(dev, "alarm_irq_enable: enabled=%08x, mr %08x\n", enabled, mr);
239 if (enabled)
240 rtt_writel(rtc, MR, mr | AT91_RTT_ALMIEN);
241 else
242 rtt_writel(rtc, MR, mr & ~AT91_RTT_ALMIEN);
243 return 0;
244}
245
David Brownell4cdf8542008-02-06 01:38:59 -0800246/*
247 * Provide additional RTC information in /proc/driver/rtc
248 */
249static int at91_rtc_proc(struct device *dev, struct seq_file *seq)
250{
251 struct sam9_rtc *rtc = dev_get_drvdata(dev);
Colin Ian Kingdf2d7412016-03-28 12:24:00 +0100252 u32 mr = rtt_readl(rtc, MR);
David Brownell4cdf8542008-02-06 01:38:59 -0800253
254 seq_printf(seq, "update_IRQ\t: %s\n",
Alexandre Bellonibe8bf982019-03-20 13:40:42 +0100255 (mr & AT91_RTT_RTTINCIEN) ? "yes" : "no");
David Brownell4cdf8542008-02-06 01:38:59 -0800256 return 0;
257}
258
Boris BREZILLON603b1a22015-03-02 10:18:14 +0100259static irqreturn_t at91_rtc_cache_events(struct sam9_rtc *rtc)
David Brownell4cdf8542008-02-06 01:38:59 -0800260{
David Brownell4cdf8542008-02-06 01:38:59 -0800261 u32 sr, mr;
David Brownell4cdf8542008-02-06 01:38:59 -0800262
263 /* Shared interrupt may be for another device. Note: reading
264 * SR clears it, so we must only read it in this irq handler!
265 */
266 mr = rtt_readl(rtc, MR) & (AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN);
David Brownell9fedc9f2008-03-19 17:01:09 -0700267 sr = rtt_readl(rtc, SR) & (mr >> 16);
David Brownell4cdf8542008-02-06 01:38:59 -0800268 if (!sr)
269 return IRQ_NONE;
270
271 /* alarm status */
272 if (sr & AT91_RTT_ALMS)
Boris BREZILLON603b1a22015-03-02 10:18:14 +0100273 rtc->events |= (RTC_AF | RTC_IRQF);
David Brownell4cdf8542008-02-06 01:38:59 -0800274
275 /* timer update/increment */
276 if (sr & AT91_RTT_RTTINC)
Boris BREZILLON603b1a22015-03-02 10:18:14 +0100277 rtc->events |= (RTC_UF | RTC_IRQF);
David Brownell4cdf8542008-02-06 01:38:59 -0800278
279 return IRQ_HANDLED;
280}
281
Boris BREZILLON603b1a22015-03-02 10:18:14 +0100282static void at91_rtc_flush_events(struct sam9_rtc *rtc)
283{
284 if (!rtc->events)
285 return;
286
287 rtc_update_irq(rtc->rtcdev, 1, rtc->events);
288 rtc->events = 0;
289
290 pr_debug("%s: num=%ld, events=0x%02lx\n", __func__,
Alexandre Bellonibe8bf982019-03-20 13:40:42 +0100291 rtc->events >> 8, rtc->events & 0x000000FF);
Boris BREZILLON603b1a22015-03-02 10:18:14 +0100292}
293
294/*
295 * IRQ handler for the RTC
296 */
297static irqreturn_t at91_rtc_interrupt(int irq, void *_rtc)
298{
299 struct sam9_rtc *rtc = _rtc;
300 int ret;
301
302 spin_lock(&rtc->lock);
303
304 ret = at91_rtc_cache_events(rtc);
305
306 /* We're called in suspended state */
307 if (rtc->suspended) {
308 /* Mask irqs coming from this peripheral */
309 rtt_writel(rtc, MR,
310 rtt_readl(rtc, MR) &
311 ~(AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN));
312 /* Trigger a system wakeup */
313 pm_system_wakeup();
314 } else {
315 at91_rtc_flush_events(rtc);
316 }
317
318 spin_unlock(&rtc->lock);
319
320 return ret;
321}
322
David Brownell4cdf8542008-02-06 01:38:59 -0800323static const struct rtc_class_ops at91_rtc_ops = {
David Brownell4cdf8542008-02-06 01:38:59 -0800324 .read_time = at91_rtc_readtime,
325 .set_time = at91_rtc_settime,
326 .read_alarm = at91_rtc_readalarm,
327 .set_alarm = at91_rtc_setalarm,
328 .proc = at91_rtc_proc,
Jelle Martijn Kokd4035852011-02-25 11:13:55 -0800329 .alarm_irq_enable = at91_rtc_alarm_irq_enable,
David Brownell4cdf8542008-02-06 01:38:59 -0800330};
331
332/*
333 * Initialize and install RTC driver
334 */
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800335static int at91_rtc_probe(struct platform_device *pdev)
David Brownell4cdf8542008-02-06 01:38:59 -0800336{
David Brownell4cdf8542008-02-06 01:38:59 -0800337 struct sam9_rtc *rtc;
Ludovic Desrochese402af62012-08-14 11:19:22 +0200338 int ret, irq;
David Brownell4cdf8542008-02-06 01:38:59 -0800339 u32 mr;
Boris BREZILLONa975f472014-09-23 16:41:07 +0200340 unsigned int sclk_rate;
Alexandre Belloni1a76a772019-03-20 13:40:37 +0100341 struct of_phandle_args args;
David Brownell4cdf8542008-02-06 01:38:59 -0800342
Ludovic Desrochese402af62012-08-14 11:19:22 +0200343 irq = platform_get_irq(pdev, 0);
Stephen Boydfaac9102019-07-30 11:15:39 -0700344 if (irq < 0)
Ludovic Desrochese402af62012-08-14 11:19:22 +0200345 return irq;
Ludovic Desrochese402af62012-08-14 11:19:22 +0200346
Jingoo Han9d42e462013-04-29 16:20:35 -0700347 rtc = devm_kzalloc(&pdev->dev, sizeof(*rtc), GFP_KERNEL);
David Brownell4cdf8542008-02-06 01:38:59 -0800348 if (!rtc)
349 return -ENOMEM;
350
Wei Yongjunb7b17632016-07-25 07:05:11 +0000351 spin_lock_init(&rtc->lock);
Ludovic Desrochese402af62012-08-14 11:19:22 +0200352 rtc->irq = irq;
353
David Brownell9fedc9f2008-03-19 17:01:09 -0700354 /* platform setup code should have handled this; sigh */
355 if (!device_can_wakeup(&pdev->dev))
356 device_init_wakeup(&pdev->dev, 1);
357
David Brownell4cdf8542008-02-06 01:38:59 -0800358 platform_set_drvdata(pdev, rtc);
David Brownell4cdf8542008-02-06 01:38:59 -0800359
YueHaibing09ef18b2019-10-06 18:29:20 +0800360 rtc->rtt = devm_platform_ioremap_resource(pdev, 0);
Boris BREZILLONd41da3e2014-09-23 13:14:09 +0200361 if (IS_ERR(rtc->rtt))
362 return PTR_ERR(rtc->rtt);
363
Alexandre Belloni1a76a772019-03-20 13:40:37 +0100364 ret = of_parse_phandle_with_fixed_args(pdev->dev.of_node,
Alexandre Bellonibe8bf982019-03-20 13:40:42 +0100365 "atmel,rtt-rtc-time-reg", 1, 0,
366 &args);
Alexandre Belloni1a76a772019-03-20 13:40:37 +0100367 if (ret)
368 return ret;
Boris BREZILLON43e112b2014-09-23 13:14:44 +0200369
Alexandre Belloni1a76a772019-03-20 13:40:37 +0100370 rtc->gpbr = syscon_node_to_regmap(args.np);
371 rtc->gpbr_offset = args.args[0];
Boris BREZILLON43e112b2014-09-23 13:14:44 +0200372 if (IS_ERR(rtc->gpbr)) {
373 dev_err(&pdev->dev, "failed to retrieve gpbr regmap, aborting.\n");
374 return -ENOMEM;
375 }
Jean-Christophe PLAGNIOL-VILLARDb3af8b42012-02-15 21:24:46 +0800376
Boris BREZILLONa975f472014-09-23 16:41:07 +0200377 rtc->sclk = devm_clk_get(&pdev->dev, NULL);
378 if (IS_ERR(rtc->sclk))
379 return PTR_ERR(rtc->sclk);
380
Boris BREZILLONa975f472014-09-23 16:41:07 +0200381 ret = clk_prepare_enable(rtc->sclk);
382 if (ret) {
383 dev_err(&pdev->dev, "Could not enable slow clock\n");
384 return ret;
385 }
386
Alexandre Belloni8918bd82015-07-28 21:51:10 +0200387 sclk_rate = clk_get_rate(rtc->sclk);
388 if (!sclk_rate || sclk_rate > AT91_RTT_RTPRES) {
389 dev_err(&pdev->dev, "Invalid slow clock rate\n");
390 ret = -EINVAL;
391 goto err_clk;
392 }
393
David Brownell4cdf8542008-02-06 01:38:59 -0800394 mr = rtt_readl(rtc, MR);
395
396 /* unless RTT is counting at 1 Hz, re-initialize it */
Boris BREZILLONa975f472014-09-23 16:41:07 +0200397 if ((mr & AT91_RTT_RTPRES) != sclk_rate) {
398 mr = AT91_RTT_RTTRST | (sclk_rate & AT91_RTT_RTPRES);
David Brownell4cdf8542008-02-06 01:38:59 -0800399 gpbr_writel(rtc, 0);
400 }
401
402 /* disable all interrupts (same as on shutdown path) */
403 mr &= ~(AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN);
404 rtt_writel(rtc, MR, mr);
405
Alexandre Belloni6c7293e2019-03-20 13:40:38 +0100406 rtc->rtcdev = devm_rtc_allocate_device(&pdev->dev);
Alexandre Belloniffe60fc2015-07-28 21:46:15 +0200407 if (IS_ERR(rtc->rtcdev)) {
408 ret = PTR_ERR(rtc->rtcdev);
409 goto err_clk;
410 }
David Brownell4cdf8542008-02-06 01:38:59 -0800411
Alexandre Belloni6c7293e2019-03-20 13:40:38 +0100412 rtc->rtcdev->ops = &at91_rtc_ops;
Alexandre Belloni255c43c2019-03-20 13:40:39 +0100413 rtc->rtcdev->range_max = U32_MAX;
Alexandre Belloni6c7293e2019-03-20 13:40:38 +0100414
David Brownell4cdf8542008-02-06 01:38:59 -0800415 /* register irq handler after we know what name we'll use */
Jingoo Han9d42e462013-04-29 16:20:35 -0700416 ret = devm_request_irq(&pdev->dev, rtc->irq, at91_rtc_interrupt,
Boris BREZILLON603b1a22015-03-02 10:18:14 +0100417 IRQF_SHARED | IRQF_COND_SUSPEND,
418 dev_name(&rtc->rtcdev->dev), rtc);
David Brownell4cdf8542008-02-06 01:38:59 -0800419 if (ret) {
Ludovic Desrochese402af62012-08-14 11:19:22 +0200420 dev_dbg(&pdev->dev, "can't share IRQ %d?\n", rtc->irq);
Alexandre Belloniffe60fc2015-07-28 21:46:15 +0200421 goto err_clk;
David Brownell4cdf8542008-02-06 01:38:59 -0800422 }
423
424 /* NOTE: sam9260 rev A silicon has a ROM bug which resets the
425 * RTT on at least some reboots. If you have that chip, you must
426 * initialize the time from some external source like a GPS, wall
427 * clock, discrete RTC, etc
428 */
429
430 if (gpbr_readl(rtc) == 0)
431 dev_warn(&pdev->dev, "%s: SET TIME!\n",
Alexandre Bellonibe8bf982019-03-20 13:40:42 +0100432 dev_name(&rtc->rtcdev->dev));
David Brownell4cdf8542008-02-06 01:38:59 -0800433
Alexandre Belloni6c7293e2019-03-20 13:40:38 +0100434 return rtc_register_device(rtc->rtcdev);
Alexandre Belloniffe60fc2015-07-28 21:46:15 +0200435
436err_clk:
437 clk_disable_unprepare(rtc->sclk);
438
439 return ret;
David Brownell4cdf8542008-02-06 01:38:59 -0800440}
441
442/*
443 * Disable and remove the RTC driver
444 */
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800445static int at91_rtc_remove(struct platform_device *pdev)
David Brownell4cdf8542008-02-06 01:38:59 -0800446{
447 struct sam9_rtc *rtc = platform_get_drvdata(pdev);
448 u32 mr = rtt_readl(rtc, MR);
449
450 /* disable all interrupts */
451 rtt_writel(rtc, MR, mr & ~(AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN));
David Brownell4cdf8542008-02-06 01:38:59 -0800452
Alexandre Belloni73ab31c2015-07-28 21:47:57 +0200453 clk_disable_unprepare(rtc->sclk);
Boris BREZILLONa975f472014-09-23 16:41:07 +0200454
David Brownell4cdf8542008-02-06 01:38:59 -0800455 return 0;
456}
457
458static void at91_rtc_shutdown(struct platform_device *pdev)
459{
460 struct sam9_rtc *rtc = platform_get_drvdata(pdev);
461 u32 mr = rtt_readl(rtc, MR);
462
463 rtc->imr = mr & (AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN);
464 rtt_writel(rtc, MR, mr & ~rtc->imr);
465}
466
Jingoo Han4dc8eb12013-04-29 16:20:58 -0700467#ifdef CONFIG_PM_SLEEP
David Brownell4cdf8542008-02-06 01:38:59 -0800468
469/* AT91SAM9 RTC Power management control */
470
Jingoo Han4dc8eb12013-04-29 16:20:58 -0700471static int at91_rtc_suspend(struct device *dev)
David Brownell4cdf8542008-02-06 01:38:59 -0800472{
Jingoo Han4dc8eb12013-04-29 16:20:58 -0700473 struct sam9_rtc *rtc = dev_get_drvdata(dev);
David Brownell4cdf8542008-02-06 01:38:59 -0800474 u32 mr = rtt_readl(rtc, MR);
475
476 /*
477 * This IRQ is shared with DBGU and other hardware which isn't
478 * necessarily a wakeup event source.
479 */
480 rtc->imr = mr & (AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN);
481 if (rtc->imr) {
Jingoo Han4dc8eb12013-04-29 16:20:58 -0700482 if (device_may_wakeup(dev) && (mr & AT91_RTT_ALMIEN)) {
Boris BREZILLON603b1a22015-03-02 10:18:14 +0100483 unsigned long flags;
484
Ludovic Desrochese402af62012-08-14 11:19:22 +0200485 enable_irq_wake(rtc->irq);
Boris BREZILLON603b1a22015-03-02 10:18:14 +0100486 spin_lock_irqsave(&rtc->lock, flags);
487 rtc->suspended = true;
488 spin_unlock_irqrestore(&rtc->lock, flags);
David Brownell4cdf8542008-02-06 01:38:59 -0800489 /* don't let RTTINC cause wakeups */
490 if (mr & AT91_RTT_RTTINCIEN)
491 rtt_writel(rtc, MR, mr & ~AT91_RTT_RTTINCIEN);
Alexandre Bellonibe8bf982019-03-20 13:40:42 +0100492 } else {
David Brownell4cdf8542008-02-06 01:38:59 -0800493 rtt_writel(rtc, MR, mr & ~rtc->imr);
Alexandre Bellonibe8bf982019-03-20 13:40:42 +0100494 }
David Brownell4cdf8542008-02-06 01:38:59 -0800495 }
496
497 return 0;
498}
499
Jingoo Han4dc8eb12013-04-29 16:20:58 -0700500static int at91_rtc_resume(struct device *dev)
David Brownell4cdf8542008-02-06 01:38:59 -0800501{
Jingoo Han4dc8eb12013-04-29 16:20:58 -0700502 struct sam9_rtc *rtc = dev_get_drvdata(dev);
David Brownell4cdf8542008-02-06 01:38:59 -0800503 u32 mr;
504
505 if (rtc->imr) {
Boris BREZILLON603b1a22015-03-02 10:18:14 +0100506 unsigned long flags;
507
Jingoo Han4dc8eb12013-04-29 16:20:58 -0700508 if (device_may_wakeup(dev))
Ludovic Desrochese402af62012-08-14 11:19:22 +0200509 disable_irq_wake(rtc->irq);
David Brownell4cdf8542008-02-06 01:38:59 -0800510 mr = rtt_readl(rtc, MR);
511 rtt_writel(rtc, MR, mr | rtc->imr);
Boris BREZILLON603b1a22015-03-02 10:18:14 +0100512
513 spin_lock_irqsave(&rtc->lock, flags);
514 rtc->suspended = false;
515 at91_rtc_cache_events(rtc);
516 at91_rtc_flush_events(rtc);
517 spin_unlock_irqrestore(&rtc->lock, flags);
David Brownell4cdf8542008-02-06 01:38:59 -0800518 }
519
520 return 0;
521}
David Brownell4cdf8542008-02-06 01:38:59 -0800522#endif
523
Jingoo Han4dc8eb12013-04-29 16:20:58 -0700524static SIMPLE_DEV_PM_OPS(at91_rtc_pm_ops, at91_rtc_suspend, at91_rtc_resume);
525
Boris BREZILLON07d4d722014-09-23 13:14:24 +0200526static const struct of_device_id at91_rtc_dt_ids[] = {
527 { .compatible = "atmel,at91sam9260-rtt" },
528 { /* sentinel */ }
529};
530MODULE_DEVICE_TABLE(of, at91_rtc_dt_ids);
Boris BREZILLON07d4d722014-09-23 13:14:24 +0200531
David Brownell4cdf8542008-02-06 01:38:59 -0800532static struct platform_driver at91_rtc_driver = {
Jean-Christophe PLAGNIOL-VILLARD205056a2012-02-15 20:51:37 +0800533 .probe = at91_rtc_probe,
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800534 .remove = at91_rtc_remove,
David Brownell4cdf8542008-02-06 01:38:59 -0800535 .shutdown = at91_rtc_shutdown,
Jean-Christophe PLAGNIOL-VILLARD205056a2012-02-15 20:51:37 +0800536 .driver = {
537 .name = "rtc-at91sam9",
Jingoo Han4dc8eb12013-04-29 16:20:58 -0700538 .pm = &at91_rtc_pm_ops,
Boris BREZILLON07d4d722014-09-23 13:14:24 +0200539 .of_match_table = of_match_ptr(at91_rtc_dt_ids),
Jean-Christophe PLAGNIOL-VILLARD205056a2012-02-15 20:51:37 +0800540 },
David Brownell4cdf8542008-02-06 01:38:59 -0800541};
542
Devendra Naga477d30d2012-10-04 17:13:54 -0700543module_platform_driver(at91_rtc_driver);
David Brownell4cdf8542008-02-06 01:38:59 -0800544
545MODULE_AUTHOR("Michel Benoit");
546MODULE_DESCRIPTION("RTC driver for Atmel AT91SAM9x");
547MODULE_LICENSE("GPL");