blob: be9c28b9d057bd3ccc177b63f1ccb8f96de821e1 [file] [log] [blame]
David Brownell4cdf8542008-02-06 01:38:59 -08001/*
2 * "RTT as Real Time Clock" driver for AT91SAM9 SoC family
3 *
4 * (C) 2007 Michel Benoit
5 *
6 * Based on rtc-at91rm9200.c by Rick Bronson
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
12 */
13
14#include <linux/module.h>
15#include <linux/kernel.h>
16#include <linux/platform_device.h>
17#include <linux/time.h>
18#include <linux/rtc.h>
19#include <linux/interrupt.h>
20#include <linux/ioctl.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Jean-Christophe PLAGNIOL-VILLARDbcd23602012-10-30 05:12:23 +080022#include <linux/platform_data/atmel.h>
Jingoo Han9d42e462013-04-29 16:20:35 -070023#include <linux/io.h>
Boris BREZILLON43e112b2014-09-23 13:14:44 +020024#include <linux/mfd/syscon.h>
25#include <linux/regmap.h>
David Brownell4cdf8542008-02-06 01:38:59 -080026
David Brownell4cdf8542008-02-06 01:38:59 -080027/*
28 * This driver uses two configurable hardware resources that live in the
29 * AT91SAM9 backup power domain (intended to be powered at all times)
30 * to implement the Real Time Clock interfaces
31 *
32 * - A "Real-time Timer" (RTT) counts up in seconds from a base time.
33 * We can't assign the counter value (CRTV) ... but we can reset it.
34 *
35 * - One of the "General Purpose Backup Registers" (GPBRs) holds the
36 * base time, normally an offset from the beginning of the POSIX
37 * epoch (1970-Jan-1 00:00:00 UTC). Some systems also include the
38 * local timezone's offset.
39 *
40 * The RTC's value is the RTT counter plus that offset. The RTC's alarm
41 * is likewise a base (ALMV) plus that offset.
42 *
43 * Not all RTTs will be used as RTCs; some systems have multiple RTTs to
44 * choose from, or a "real" RTC module. All systems have multiple GPBR
45 * registers available, likewise usable for more than "RTC" support.
46 */
47
Boris BREZILLON6575bd72014-09-23 13:13:29 +020048#define AT91_RTT_MR 0x00 /* Real-time Mode Register */
49#define AT91_RTT_RTPRES (0xffff << 0) /* Real-time Timer Prescaler Value */
50#define AT91_RTT_ALMIEN (1 << 16) /* Alarm Interrupt Enable */
51#define AT91_RTT_RTTINCIEN (1 << 17) /* Real Time Timer Increment Interrupt Enable */
52#define AT91_RTT_RTTRST (1 << 18) /* Real Time Timer Restart */
53
54#define AT91_RTT_AR 0x04 /* Real-time Alarm Register */
55#define AT91_RTT_ALMV (0xffffffff) /* Alarm Value */
56
57#define AT91_RTT_VR 0x08 /* Real-time Value Register */
58#define AT91_RTT_CRTV (0xffffffff) /* Current Real-time Value */
59
60#define AT91_RTT_SR 0x0c /* Real-time Status Register */
61#define AT91_RTT_ALMS (1 << 0) /* Real-time Alarm Status */
62#define AT91_RTT_RTTINC (1 << 1) /* Real-time Timer Increment */
63
64#define AT91_SLOW_CLOCK 32768
65
David Brownell4cdf8542008-02-06 01:38:59 -080066/*
67 * We store ALARM_DISABLED in ALMV to record that no alarm is set.
68 * It's also the reset value for that field.
69 */
70#define ALARM_DISABLED ((u32)~0)
71
72
73struct sam9_rtc {
74 void __iomem *rtt;
75 struct rtc_device *rtcdev;
76 u32 imr;
Boris BREZILLON43e112b2014-09-23 13:14:44 +020077 struct regmap *gpbr;
78 unsigned int gpbr_offset;
Ludovic Desrochese402af62012-08-14 11:19:22 +020079 int irq;
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
121 rtc_time_to_tm(offset + secs, tm);
122
123 dev_dbg(dev, "%s: %4d-%02d-%02d %02d:%02d:%02d\n", "readtime",
124 1900 + tm->tm_year, tm->tm_mon, tm->tm_mday,
125 tm->tm_hour, tm->tm_min, tm->tm_sec);
126
127 return 0;
128}
129
130/*
131 * Set current time and date in RTC
132 */
133static int at91_rtc_settime(struct device *dev, struct rtc_time *tm)
134{
135 struct sam9_rtc *rtc = dev_get_drvdata(dev);
136 int err;
137 u32 offset, alarm, mr;
138 unsigned long secs;
139
140 dev_dbg(dev, "%s: %4d-%02d-%02d %02d:%02d:%02d\n", "settime",
141 1900 + tm->tm_year, tm->tm_mon, tm->tm_mday,
142 tm->tm_hour, tm->tm_min, tm->tm_sec);
143
144 err = rtc_tm_to_time(tm, &secs);
145 if (err != 0)
146 return err;
147
148 mr = rtt_readl(rtc, MR);
149
150 /* disable interrupts */
151 rtt_writel(rtc, MR, mr & ~(AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN));
152
153 /* read current time offset */
154 offset = gpbr_readl(rtc);
155
156 /* store the new base time in a battery backup register */
157 secs += 1;
158 gpbr_writel(rtc, secs);
159
160 /* adjust the alarm time for the new base */
161 alarm = rtt_readl(rtc, AR);
162 if (alarm != ALARM_DISABLED) {
163 if (offset > secs) {
164 /* time jumped backwards, increase time until alarm */
165 alarm += (offset - secs);
166 } else if ((alarm + offset) > secs) {
167 /* time jumped forwards, decrease time until alarm */
168 alarm -= (secs - offset);
169 } else {
170 /* time jumped past the alarm, disable alarm */
171 alarm = ALARM_DISABLED;
172 mr &= ~AT91_RTT_ALMIEN;
173 }
174 rtt_writel(rtc, AR, alarm);
175 }
176
177 /* reset the timer, and re-enable interrupts */
178 rtt_writel(rtc, MR, mr | AT91_RTT_RTTRST);
179
180 return 0;
181}
182
183static int at91_rtc_readalarm(struct device *dev, struct rtc_wkalrm *alrm)
184{
185 struct sam9_rtc *rtc = dev_get_drvdata(dev);
186 struct rtc_time *tm = &alrm->time;
187 u32 alarm = rtt_readl(rtc, AR);
188 u32 offset;
189
190 offset = gpbr_readl(rtc);
191 if (offset == 0)
192 return -EILSEQ;
193
Julia Lawall870a2762010-03-05 13:44:23 -0800194 memset(alrm, 0, sizeof(*alrm));
David Brownell4cdf8542008-02-06 01:38:59 -0800195 if (alarm != ALARM_DISABLED && offset != 0) {
196 rtc_time_to_tm(offset + alarm, tm);
197
198 dev_dbg(dev, "%s: %4d-%02d-%02d %02d:%02d:%02d\n", "readalarm",
199 1900 + tm->tm_year, tm->tm_mon, tm->tm_mday,
200 tm->tm_hour, tm->tm_min, tm->tm_sec);
201
202 if (rtt_readl(rtc, MR) & AT91_RTT_ALMIEN)
203 alrm->enabled = 1;
204 }
205
206 return 0;
207}
208
209static int at91_rtc_setalarm(struct device *dev, struct rtc_wkalrm *alrm)
210{
211 struct sam9_rtc *rtc = dev_get_drvdata(dev);
212 struct rtc_time *tm = &alrm->time;
213 unsigned long secs;
214 u32 offset;
215 u32 mr;
216 int err;
217
218 err = rtc_tm_to_time(tm, &secs);
219 if (err != 0)
220 return err;
221
222 offset = gpbr_readl(rtc);
223 if (offset == 0) {
224 /* time is not set */
225 return -EILSEQ;
226 }
227 mr = rtt_readl(rtc, MR);
228 rtt_writel(rtc, MR, mr & ~AT91_RTT_ALMIEN);
229
230 /* alarm in the past? finish and leave disabled */
231 if (secs <= offset) {
232 rtt_writel(rtc, AR, ALARM_DISABLED);
233 return 0;
234 }
235
236 /* else set alarm and maybe enable it */
237 rtt_writel(rtc, AR, secs - offset);
238 if (alrm->enabled)
239 rtt_writel(rtc, MR, mr | AT91_RTT_ALMIEN);
240
241 dev_dbg(dev, "%s: %4d-%02d-%02d %02d:%02d:%02d\n", "setalarm",
242 tm->tm_year, tm->tm_mon, tm->tm_mday, tm->tm_hour,
243 tm->tm_min, tm->tm_sec);
244
245 return 0;
246}
247
John Stultz16380c12011-02-02 17:02:41 -0800248static int at91_rtc_alarm_irq_enable(struct device *dev, unsigned int enabled)
249{
250 struct sam9_rtc *rtc = dev_get_drvdata(dev);
251 u32 mr = rtt_readl(rtc, MR);
252
253 dev_dbg(dev, "alarm_irq_enable: enabled=%08x, mr %08x\n", enabled, mr);
254 if (enabled)
255 rtt_writel(rtc, MR, mr | AT91_RTT_ALMIEN);
256 else
257 rtt_writel(rtc, MR, mr & ~AT91_RTT_ALMIEN);
258 return 0;
259}
260
David Brownell4cdf8542008-02-06 01:38:59 -0800261/*
262 * Provide additional RTC information in /proc/driver/rtc
263 */
264static int at91_rtc_proc(struct device *dev, struct seq_file *seq)
265{
266 struct sam9_rtc *rtc = dev_get_drvdata(dev);
267 u32 mr = mr = rtt_readl(rtc, MR);
268
269 seq_printf(seq, "update_IRQ\t: %s\n",
270 (mr & AT91_RTT_RTTINCIEN) ? "yes" : "no");
271 return 0;
272}
273
274/*
275 * IRQ handler for the RTC
276 */
277static irqreturn_t at91_rtc_interrupt(int irq, void *_rtc)
278{
279 struct sam9_rtc *rtc = _rtc;
280 u32 sr, mr;
281 unsigned long events = 0;
282
283 /* Shared interrupt may be for another device. Note: reading
284 * SR clears it, so we must only read it in this irq handler!
285 */
286 mr = rtt_readl(rtc, MR) & (AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN);
David Brownell9fedc9f2008-03-19 17:01:09 -0700287 sr = rtt_readl(rtc, SR) & (mr >> 16);
David Brownell4cdf8542008-02-06 01:38:59 -0800288 if (!sr)
289 return IRQ_NONE;
290
291 /* alarm status */
292 if (sr & AT91_RTT_ALMS)
293 events |= (RTC_AF | RTC_IRQF);
294
295 /* timer update/increment */
296 if (sr & AT91_RTT_RTTINC)
297 events |= (RTC_UF | RTC_IRQF);
298
299 rtc_update_irq(rtc->rtcdev, 1, events);
300
Harvey Harrison2a4e2b8782008-04-28 02:12:00 -0700301 pr_debug("%s: num=%ld, events=0x%02lx\n", __func__,
David Brownell4cdf8542008-02-06 01:38:59 -0800302 events >> 8, events & 0x000000FF);
303
304 return IRQ_HANDLED;
305}
306
307static const struct rtc_class_ops at91_rtc_ops = {
David Brownell4cdf8542008-02-06 01:38:59 -0800308 .read_time = at91_rtc_readtime,
309 .set_time = at91_rtc_settime,
310 .read_alarm = at91_rtc_readalarm,
311 .set_alarm = at91_rtc_setalarm,
312 .proc = at91_rtc_proc,
Jelle Martijn Kokd4035852011-02-25 11:13:55 -0800313 .alarm_irq_enable = at91_rtc_alarm_irq_enable,
David Brownell4cdf8542008-02-06 01:38:59 -0800314};
315
Boris BREZILLON43e112b2014-09-23 13:14:44 +0200316static struct regmap_config gpbr_regmap_config = {
317 .reg_bits = 32,
318 .val_bits = 32,
319 .reg_stride = 4,
320};
321
David Brownell4cdf8542008-02-06 01:38:59 -0800322/*
323 * Initialize and install RTC driver
324 */
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800325static int at91_rtc_probe(struct platform_device *pdev)
David Brownell4cdf8542008-02-06 01:38:59 -0800326{
Boris BREZILLONd41da3e2014-09-23 13:14:09 +0200327 struct resource *r;
David Brownell4cdf8542008-02-06 01:38:59 -0800328 struct sam9_rtc *rtc;
Ludovic Desrochese402af62012-08-14 11:19:22 +0200329 int ret, irq;
David Brownell4cdf8542008-02-06 01:38:59 -0800330 u32 mr;
331
Ludovic Desrochese402af62012-08-14 11:19:22 +0200332 irq = platform_get_irq(pdev, 0);
333 if (irq < 0) {
334 dev_err(&pdev->dev, "failed to get interrupt resource\n");
335 return irq;
336 }
337
Jingoo Han9d42e462013-04-29 16:20:35 -0700338 rtc = devm_kzalloc(&pdev->dev, sizeof(*rtc), GFP_KERNEL);
David Brownell4cdf8542008-02-06 01:38:59 -0800339 if (!rtc)
340 return -ENOMEM;
341
Ludovic Desrochese402af62012-08-14 11:19:22 +0200342 rtc->irq = irq;
343
David Brownell9fedc9f2008-03-19 17:01:09 -0700344 /* platform setup code should have handled this; sigh */
345 if (!device_can_wakeup(&pdev->dev))
346 device_init_wakeup(&pdev->dev, 1);
347
David Brownell4cdf8542008-02-06 01:38:59 -0800348 platform_set_drvdata(pdev, rtc);
David Brownell4cdf8542008-02-06 01:38:59 -0800349
Boris BREZILLONd41da3e2014-09-23 13:14:09 +0200350 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
351 rtc->rtt = devm_ioremap_resource(&pdev->dev, r);
352 if (IS_ERR(rtc->rtt))
353 return PTR_ERR(rtc->rtt);
354
Boris BREZILLON43e112b2014-09-23 13:14:44 +0200355 if (!pdev->dev.of_node) {
356 /*
357 * TODO: Remove this code chunk when removing non DT board
358 * support. Remember to remove the gpbr_regmap_config
359 * variable too.
360 */
361 void __iomem *gpbr;
362
363 r = platform_get_resource(pdev, IORESOURCE_MEM, 1);
364 gpbr = devm_ioremap_resource(&pdev->dev, r);
365 if (IS_ERR(gpbr))
366 return PTR_ERR(gpbr);
367
368 rtc->gpbr = regmap_init_mmio(NULL, gpbr,
369 &gpbr_regmap_config);
370 } else {
371 struct of_phandle_args args;
372
373 ret = of_parse_phandle_with_fixed_args(pdev->dev.of_node,
374 "atmel,rtt-rtc-time-reg", 1, 0,
375 &args);
376 if (ret)
377 return ret;
378
379 rtc->gpbr = syscon_node_to_regmap(args.np);
380 rtc->gpbr_offset = args.args[0];
381 }
382
383 if (IS_ERR(rtc->gpbr)) {
384 dev_err(&pdev->dev, "failed to retrieve gpbr regmap, aborting.\n");
385 return -ENOMEM;
386 }
Jean-Christophe PLAGNIOL-VILLARDb3af8b42012-02-15 21:24:46 +0800387
David Brownell4cdf8542008-02-06 01:38:59 -0800388 mr = rtt_readl(rtc, MR);
389
390 /* unless RTT is counting at 1 Hz, re-initialize it */
391 if ((mr & AT91_RTT_RTPRES) != AT91_SLOW_CLOCK) {
392 mr = AT91_RTT_RTTRST | (AT91_SLOW_CLOCK & AT91_RTT_RTPRES);
393 gpbr_writel(rtc, 0);
394 }
395
396 /* disable all interrupts (same as on shutdown path) */
397 mr &= ~(AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN);
398 rtt_writel(rtc, MR, mr);
399
Jingoo Han9d42e462013-04-29 16:20:35 -0700400 rtc->rtcdev = devm_rtc_device_register(&pdev->dev, pdev->name,
401 &at91_rtc_ops, THIS_MODULE);
Jingoo Han61cc4832013-07-03 15:06:12 -0700402 if (IS_ERR(rtc->rtcdev))
403 return PTR_ERR(rtc->rtcdev);
David Brownell4cdf8542008-02-06 01:38:59 -0800404
405 /* register irq handler after we know what name we'll use */
Jingoo Han9d42e462013-04-29 16:20:35 -0700406 ret = devm_request_irq(&pdev->dev, rtc->irq, at91_rtc_interrupt,
407 IRQF_SHARED, dev_name(&rtc->rtcdev->dev), rtc);
David Brownell4cdf8542008-02-06 01:38:59 -0800408 if (ret) {
Ludovic Desrochese402af62012-08-14 11:19:22 +0200409 dev_dbg(&pdev->dev, "can't share IRQ %d?\n", rtc->irq);
Jingoo Han61cc4832013-07-03 15:06:12 -0700410 return ret;
David Brownell4cdf8542008-02-06 01:38:59 -0800411 }
412
413 /* NOTE: sam9260 rev A silicon has a ROM bug which resets the
414 * RTT on at least some reboots. If you have that chip, you must
415 * initialize the time from some external source like a GPS, wall
416 * clock, discrete RTC, etc
417 */
418
419 if (gpbr_readl(rtc) == 0)
420 dev_warn(&pdev->dev, "%s: SET TIME!\n",
Kay Sievers744bcb12009-03-24 16:38:22 -0700421 dev_name(&rtc->rtcdev->dev));
David Brownell4cdf8542008-02-06 01:38:59 -0800422
423 return 0;
David Brownell4cdf8542008-02-06 01:38:59 -0800424}
425
426/*
427 * Disable and remove the RTC driver
428 */
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800429static int at91_rtc_remove(struct platform_device *pdev)
David Brownell4cdf8542008-02-06 01:38:59 -0800430{
431 struct sam9_rtc *rtc = platform_get_drvdata(pdev);
432 u32 mr = rtt_readl(rtc, MR);
433
434 /* disable all interrupts */
435 rtt_writel(rtc, MR, mr & ~(AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN));
David Brownell4cdf8542008-02-06 01:38:59 -0800436
David Brownell4cdf8542008-02-06 01:38:59 -0800437 return 0;
438}
439
440static void at91_rtc_shutdown(struct platform_device *pdev)
441{
442 struct sam9_rtc *rtc = platform_get_drvdata(pdev);
443 u32 mr = rtt_readl(rtc, MR);
444
445 rtc->imr = mr & (AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN);
446 rtt_writel(rtc, MR, mr & ~rtc->imr);
447}
448
Jingoo Han4dc8eb12013-04-29 16:20:58 -0700449#ifdef CONFIG_PM_SLEEP
David Brownell4cdf8542008-02-06 01:38:59 -0800450
451/* AT91SAM9 RTC Power management control */
452
Jingoo Han4dc8eb12013-04-29 16:20:58 -0700453static int at91_rtc_suspend(struct device *dev)
David Brownell4cdf8542008-02-06 01:38:59 -0800454{
Jingoo Han4dc8eb12013-04-29 16:20:58 -0700455 struct sam9_rtc *rtc = dev_get_drvdata(dev);
David Brownell4cdf8542008-02-06 01:38:59 -0800456 u32 mr = rtt_readl(rtc, MR);
457
458 /*
459 * This IRQ is shared with DBGU and other hardware which isn't
460 * necessarily a wakeup event source.
461 */
462 rtc->imr = mr & (AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN);
463 if (rtc->imr) {
Jingoo Han4dc8eb12013-04-29 16:20:58 -0700464 if (device_may_wakeup(dev) && (mr & AT91_RTT_ALMIEN)) {
Ludovic Desrochese402af62012-08-14 11:19:22 +0200465 enable_irq_wake(rtc->irq);
David Brownell4cdf8542008-02-06 01:38:59 -0800466 /* don't let RTTINC cause wakeups */
467 if (mr & AT91_RTT_RTTINCIEN)
468 rtt_writel(rtc, MR, mr & ~AT91_RTT_RTTINCIEN);
469 } else
470 rtt_writel(rtc, MR, mr & ~rtc->imr);
471 }
472
473 return 0;
474}
475
Jingoo Han4dc8eb12013-04-29 16:20:58 -0700476static int at91_rtc_resume(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;
480
481 if (rtc->imr) {
Jingoo Han4dc8eb12013-04-29 16:20:58 -0700482 if (device_may_wakeup(dev))
Ludovic Desrochese402af62012-08-14 11:19:22 +0200483 disable_irq_wake(rtc->irq);
David Brownell4cdf8542008-02-06 01:38:59 -0800484 mr = rtt_readl(rtc, MR);
485 rtt_writel(rtc, MR, mr | rtc->imr);
486 }
487
488 return 0;
489}
David Brownell4cdf8542008-02-06 01:38:59 -0800490#endif
491
Jingoo Han4dc8eb12013-04-29 16:20:58 -0700492static SIMPLE_DEV_PM_OPS(at91_rtc_pm_ops, at91_rtc_suspend, at91_rtc_resume);
493
Boris BREZILLON07d4d722014-09-23 13:14:24 +0200494#ifdef CONFIG_OF
495static const struct of_device_id at91_rtc_dt_ids[] = {
496 { .compatible = "atmel,at91sam9260-rtt" },
497 { /* sentinel */ }
498};
499MODULE_DEVICE_TABLE(of, at91_rtc_dt_ids);
500#endif
501
David Brownell4cdf8542008-02-06 01:38:59 -0800502static struct platform_driver at91_rtc_driver = {
Jean-Christophe PLAGNIOL-VILLARD205056a2012-02-15 20:51:37 +0800503 .probe = at91_rtc_probe,
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800504 .remove = at91_rtc_remove,
David Brownell4cdf8542008-02-06 01:38:59 -0800505 .shutdown = at91_rtc_shutdown,
Jean-Christophe PLAGNIOL-VILLARD205056a2012-02-15 20:51:37 +0800506 .driver = {
507 .name = "rtc-at91sam9",
508 .owner = THIS_MODULE,
Jingoo Han4dc8eb12013-04-29 16:20:58 -0700509 .pm = &at91_rtc_pm_ops,
Boris BREZILLON07d4d722014-09-23 13:14:24 +0200510 .of_match_table = of_match_ptr(at91_rtc_dt_ids),
Jean-Christophe PLAGNIOL-VILLARD205056a2012-02-15 20:51:37 +0800511 },
David Brownell4cdf8542008-02-06 01:38:59 -0800512};
513
Devendra Naga477d30d2012-10-04 17:13:54 -0700514module_platform_driver(at91_rtc_driver);
David Brownell4cdf8542008-02-06 01:38:59 -0800515
516MODULE_AUTHOR("Michel Benoit");
517MODULE_DESCRIPTION("RTC driver for Atmel AT91SAM9x");
518MODULE_LICENSE("GPL");