Linux Audio

Check our new training course

Loading...
v3.5.6
  1/*
  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>
 21#include <linux/slab.h>
 
 
 22
 23#include <mach/board.h>
 24#include <mach/at91_rtt.h>
 25#include <mach/cpu.h>
 26
 27
 28/*
 29 * This driver uses two configurable hardware resources that live in the
 30 * AT91SAM9 backup power domain (intended to be powered at all times)
 31 * to implement the Real Time Clock interfaces
 32 *
 33 *  - A "Real-time Timer" (RTT) counts up in seconds from a base time.
 34 *    We can't assign the counter value (CRTV) ... but we can reset it.
 35 *
 36 *  - One of the "General Purpose Backup Registers" (GPBRs) holds the
 37 *    base time, normally an offset from the beginning of the POSIX
 38 *    epoch (1970-Jan-1 00:00:00 UTC).  Some systems also include the
 39 *    local timezone's offset.
 40 *
 41 * The RTC's value is the RTT counter plus that offset.  The RTC's alarm
 42 * is likewise a base (ALMV) plus that offset.
 43 *
 44 * Not all RTTs will be used as RTCs; some systems have multiple RTTs to
 45 * choose from, or a "real" RTC module.  All systems have multiple GPBR
 46 * registers available, likewise usable for more than "RTC" support.
 47 */
 48
 49/*
 50 * We store ALARM_DISABLED in ALMV to record that no alarm is set.
 51 * It's also the reset value for that field.
 52 */
 53#define ALARM_DISABLED	((u32)~0)
 54
 55
 56struct sam9_rtc {
 57	void __iomem		*rtt;
 58	struct rtc_device	*rtcdev;
 59	u32			imr;
 60	void __iomem		*gpbr;
 
 61};
 62
 63#define rtt_readl(rtc, field) \
 64	__raw_readl((rtc)->rtt + AT91_RTT_ ## field)
 65#define rtt_writel(rtc, field, val) \
 66	__raw_writel((val), (rtc)->rtt + AT91_RTT_ ## field)
 67
 68#define gpbr_readl(rtc) \
 69	__raw_readl((rtc)->gpbr)
 70#define gpbr_writel(rtc, val) \
 71	__raw_writel((val), (rtc)->gpbr)
 72
 73/*
 74 * Read current time and date in RTC
 75 */
 76static int at91_rtc_readtime(struct device *dev, struct rtc_time *tm)
 77{
 78	struct sam9_rtc *rtc = dev_get_drvdata(dev);
 79	u32 secs, secs2;
 80	u32 offset;
 81
 82	/* read current time offset */
 83	offset = gpbr_readl(rtc);
 84	if (offset == 0)
 85		return -EILSEQ;
 86
 87	/* reread the counter to help sync the two clock domains */
 88	secs = rtt_readl(rtc, VR);
 89	secs2 = rtt_readl(rtc, VR);
 90	if (secs != secs2)
 91		secs = rtt_readl(rtc, VR);
 92
 93	rtc_time_to_tm(offset + secs, tm);
 94
 95	dev_dbg(dev, "%s: %4d-%02d-%02d %02d:%02d:%02d\n", "readtime",
 96		1900 + tm->tm_year, tm->tm_mon, tm->tm_mday,
 97		tm->tm_hour, tm->tm_min, tm->tm_sec);
 98
 99	return 0;
100}
101
102/*
103 * Set current time and date in RTC
104 */
105static int at91_rtc_settime(struct device *dev, struct rtc_time *tm)
106{
107	struct sam9_rtc *rtc = dev_get_drvdata(dev);
108	int err;
109	u32 offset, alarm, mr;
110	unsigned long secs;
111
112	dev_dbg(dev, "%s: %4d-%02d-%02d %02d:%02d:%02d\n", "settime",
113		1900 + tm->tm_year, tm->tm_mon, tm->tm_mday,
114		tm->tm_hour, tm->tm_min, tm->tm_sec);
115
116	err = rtc_tm_to_time(tm, &secs);
117	if (err != 0)
118		return err;
119
120	mr = rtt_readl(rtc, MR);
121
122	/* disable interrupts */
123	rtt_writel(rtc, MR, mr & ~(AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN));
124
125	/* read current time offset */
126	offset = gpbr_readl(rtc);
127
128	/* store the new base time in a battery backup register */
129	secs += 1;
130	gpbr_writel(rtc, secs);
131
132	/* adjust the alarm time for the new base */
133	alarm = rtt_readl(rtc, AR);
134	if (alarm != ALARM_DISABLED) {
135		if (offset > secs) {
136			/* time jumped backwards, increase time until alarm */
137			alarm += (offset - secs);
138		} else if ((alarm + offset) > secs) {
139			/* time jumped forwards, decrease time until alarm */
140			alarm -= (secs - offset);
141		} else {
142			/* time jumped past the alarm, disable alarm */
143			alarm = ALARM_DISABLED;
144			mr &= ~AT91_RTT_ALMIEN;
145		}
146		rtt_writel(rtc, AR, alarm);
147	}
148
149	/* reset the timer, and re-enable interrupts */
150	rtt_writel(rtc, MR, mr | AT91_RTT_RTTRST);
151
152	return 0;
153}
154
155static int at91_rtc_readalarm(struct device *dev, struct rtc_wkalrm *alrm)
156{
157	struct sam9_rtc *rtc = dev_get_drvdata(dev);
158	struct rtc_time *tm = &alrm->time;
159	u32 alarm = rtt_readl(rtc, AR);
160	u32 offset;
161
162	offset = gpbr_readl(rtc);
163	if (offset == 0)
164		return -EILSEQ;
165
166	memset(alrm, 0, sizeof(*alrm));
167	if (alarm != ALARM_DISABLED && offset != 0) {
168		rtc_time_to_tm(offset + alarm, tm);
169
170		dev_dbg(dev, "%s: %4d-%02d-%02d %02d:%02d:%02d\n", "readalarm",
171			1900 + tm->tm_year, tm->tm_mon, tm->tm_mday,
172			tm->tm_hour, tm->tm_min, tm->tm_sec);
173
174		if (rtt_readl(rtc, MR) & AT91_RTT_ALMIEN)
175			alrm->enabled = 1;
176	}
177
178	return 0;
179}
180
181static int at91_rtc_setalarm(struct device *dev, struct rtc_wkalrm *alrm)
182{
183	struct sam9_rtc *rtc = dev_get_drvdata(dev);
184	struct rtc_time *tm = &alrm->time;
185	unsigned long secs;
186	u32 offset;
187	u32 mr;
188	int err;
189
190	err = rtc_tm_to_time(tm, &secs);
191	if (err != 0)
192		return err;
193
194	offset = gpbr_readl(rtc);
195	if (offset == 0) {
196		/* time is not set */
197		return -EILSEQ;
198	}
199	mr = rtt_readl(rtc, MR);
200	rtt_writel(rtc, MR, mr & ~AT91_RTT_ALMIEN);
201
202	/* alarm in the past? finish and leave disabled */
203	if (secs <= offset) {
204		rtt_writel(rtc, AR, ALARM_DISABLED);
205		return 0;
206	}
207
208	/* else set alarm and maybe enable it */
209	rtt_writel(rtc, AR, secs - offset);
210	if (alrm->enabled)
211		rtt_writel(rtc, MR, mr | AT91_RTT_ALMIEN);
212
213	dev_dbg(dev, "%s: %4d-%02d-%02d %02d:%02d:%02d\n", "setalarm",
214		tm->tm_year, tm->tm_mon, tm->tm_mday, tm->tm_hour,
215		tm->tm_min, tm->tm_sec);
216
217	return 0;
218}
219
220static int at91_rtc_alarm_irq_enable(struct device *dev, unsigned int enabled)
221{
222	struct sam9_rtc *rtc = dev_get_drvdata(dev);
223	u32 mr = rtt_readl(rtc, MR);
224
225	dev_dbg(dev, "alarm_irq_enable: enabled=%08x, mr %08x\n", enabled, mr);
226	if (enabled)
227		rtt_writel(rtc, MR, mr | AT91_RTT_ALMIEN);
228	else
229		rtt_writel(rtc, MR, mr & ~AT91_RTT_ALMIEN);
230	return 0;
231}
232
233/*
234 * Provide additional RTC information in /proc/driver/rtc
235 */
236static int at91_rtc_proc(struct device *dev, struct seq_file *seq)
237{
238	struct sam9_rtc *rtc = dev_get_drvdata(dev);
239	u32 mr = mr = rtt_readl(rtc, MR);
240
241	seq_printf(seq, "update_IRQ\t: %s\n",
242			(mr & AT91_RTT_RTTINCIEN) ? "yes" : "no");
243	return 0;
244}
245
246/*
247 * IRQ handler for the RTC
248 */
249static irqreturn_t at91_rtc_interrupt(int irq, void *_rtc)
250{
251	struct sam9_rtc *rtc = _rtc;
252	u32 sr, mr;
253	unsigned long events = 0;
254
255	/* Shared interrupt may be for another device.  Note: reading
256	 * SR clears it, so we must only read it in this irq handler!
257	 */
258	mr = rtt_readl(rtc, MR) & (AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN);
259	sr = rtt_readl(rtc, SR) & (mr >> 16);
260	if (!sr)
261		return IRQ_NONE;
262
263	/* alarm status */
264	if (sr & AT91_RTT_ALMS)
265		events |= (RTC_AF | RTC_IRQF);
266
267	/* timer update/increment */
268	if (sr & AT91_RTT_RTTINC)
269		events |= (RTC_UF | RTC_IRQF);
270
271	rtc_update_irq(rtc->rtcdev, 1, events);
272
273	pr_debug("%s: num=%ld, events=0x%02lx\n", __func__,
274		events >> 8, events & 0x000000FF);
275
276	return IRQ_HANDLED;
277}
278
279static const struct rtc_class_ops at91_rtc_ops = {
280	.read_time	= at91_rtc_readtime,
281	.set_time	= at91_rtc_settime,
282	.read_alarm	= at91_rtc_readalarm,
283	.set_alarm	= at91_rtc_setalarm,
284	.proc		= at91_rtc_proc,
285	.alarm_irq_enable = at91_rtc_alarm_irq_enable,
286};
287
288/*
289 * Initialize and install RTC driver
290 */
291static int __devinit at91_rtc_probe(struct platform_device *pdev)
292{
293	struct resource	*r, *r_gpbr;
294	struct sam9_rtc	*rtc;
295	int		ret;
296	u32		mr;
297
298	r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
299	r_gpbr = platform_get_resource(pdev, IORESOURCE_MEM, 1);
300	if (!r || !r_gpbr) {
301		dev_err(&pdev->dev, "need 2 ressources\n");
302		return -ENODEV;
303	}
304
305	rtc = kzalloc(sizeof *rtc, GFP_KERNEL);
 
 
 
 
 
 
306	if (!rtc)
307		return -ENOMEM;
308
 
 
309	/* platform setup code should have handled this; sigh */
310	if (!device_can_wakeup(&pdev->dev))
311		device_init_wakeup(&pdev->dev, 1);
312
313	platform_set_drvdata(pdev, rtc);
314	rtc->rtt = ioremap(r->start, resource_size(r));
315	if (!rtc->rtt) {
316		dev_err(&pdev->dev, "failed to map registers, aborting.\n");
317		ret = -ENOMEM;
318		goto fail;
319	}
320
321	rtc->gpbr = ioremap(r_gpbr->start, resource_size(r_gpbr));
 
322	if (!rtc->gpbr) {
323		dev_err(&pdev->dev, "failed to map gpbr registers, aborting.\n");
324		ret = -ENOMEM;
325		goto fail_gpbr;
326	}
327
328	mr = rtt_readl(rtc, MR);
329
330	/* unless RTT is counting at 1 Hz, re-initialize it */
331	if ((mr & AT91_RTT_RTPRES) != AT91_SLOW_CLOCK) {
332		mr = AT91_RTT_RTTRST | (AT91_SLOW_CLOCK & AT91_RTT_RTPRES);
333		gpbr_writel(rtc, 0);
334	}
335
336	/* disable all interrupts (same as on shutdown path) */
337	mr &= ~(AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN);
338	rtt_writel(rtc, MR, mr);
339
340	rtc->rtcdev = rtc_device_register(pdev->name, &pdev->dev,
341				&at91_rtc_ops, THIS_MODULE);
342	if (IS_ERR(rtc->rtcdev)) {
343		ret = PTR_ERR(rtc->rtcdev);
344		goto fail_register;
345	}
346
347	/* register irq handler after we know what name we'll use */
348	ret = request_irq(AT91_ID_SYS, at91_rtc_interrupt,
349				IRQF_SHARED,
350				dev_name(&rtc->rtcdev->dev), rtc);
351	if (ret) {
352		dev_dbg(&pdev->dev, "can't share IRQ %d?\n", AT91_ID_SYS);
353		rtc_device_unregister(rtc->rtcdev);
354		goto fail_register;
355	}
356
357	/* NOTE:  sam9260 rev A silicon has a ROM bug which resets the
358	 * RTT on at least some reboots.  If you have that chip, you must
359	 * initialize the time from some external source like a GPS, wall
360	 * clock, discrete RTC, etc
361	 */
362
363	if (gpbr_readl(rtc) == 0)
364		dev_warn(&pdev->dev, "%s: SET TIME!\n",
365				dev_name(&rtc->rtcdev->dev));
366
367	return 0;
368
369fail_register:
370	iounmap(rtc->gpbr);
371fail_gpbr:
372	iounmap(rtc->rtt);
373fail:
374	platform_set_drvdata(pdev, NULL);
375	kfree(rtc);
376	return ret;
377}
378
379/*
380 * Disable and remove the RTC driver
381 */
382static int __devexit at91_rtc_remove(struct platform_device *pdev)
383{
384	struct sam9_rtc	*rtc = platform_get_drvdata(pdev);
385	u32		mr = rtt_readl(rtc, MR);
386
387	/* disable all interrupts */
388	rtt_writel(rtc, MR, mr & ~(AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN));
389	free_irq(AT91_ID_SYS, rtc);
390
391	rtc_device_unregister(rtc->rtcdev);
392
393	iounmap(rtc->gpbr);
394	iounmap(rtc->rtt);
395	platform_set_drvdata(pdev, NULL);
396	kfree(rtc);
397	return 0;
398}
399
400static void at91_rtc_shutdown(struct platform_device *pdev)
401{
402	struct sam9_rtc	*rtc = platform_get_drvdata(pdev);
403	u32		mr = rtt_readl(rtc, MR);
404
405	rtc->imr = mr & (AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN);
406	rtt_writel(rtc, MR, mr & ~rtc->imr);
407}
408
409#ifdef CONFIG_PM
410
411/* AT91SAM9 RTC Power management control */
412
413static int at91_rtc_suspend(struct platform_device *pdev,
414					pm_message_t state)
415{
416	struct sam9_rtc	*rtc = platform_get_drvdata(pdev);
417	u32		mr = rtt_readl(rtc, MR);
418
419	/*
420	 * This IRQ is shared with DBGU and other hardware which isn't
421	 * necessarily a wakeup event source.
422	 */
423	rtc->imr = mr & (AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN);
424	if (rtc->imr) {
425		if (device_may_wakeup(&pdev->dev) && (mr & AT91_RTT_ALMIEN)) {
426			enable_irq_wake(AT91_ID_SYS);
427			/* don't let RTTINC cause wakeups */
428			if (mr & AT91_RTT_RTTINCIEN)
429				rtt_writel(rtc, MR, mr & ~AT91_RTT_RTTINCIEN);
430		} else
431			rtt_writel(rtc, MR, mr & ~rtc->imr);
432	}
433
434	return 0;
435}
436
437static int at91_rtc_resume(struct platform_device *pdev)
438{
439	struct sam9_rtc	*rtc = platform_get_drvdata(pdev);
440	u32		mr;
441
442	if (rtc->imr) {
443		if (device_may_wakeup(&pdev->dev))
444			disable_irq_wake(AT91_ID_SYS);
445		mr = rtt_readl(rtc, MR);
446		rtt_writel(rtc, MR, mr | rtc->imr);
447	}
448
449	return 0;
450}
451#else
452#define at91_rtc_suspend	NULL
453#define at91_rtc_resume		NULL
454#endif
455
 
 
456static struct platform_driver at91_rtc_driver = {
457	.probe		= at91_rtc_probe,
458	.remove		= __devexit_p(at91_rtc_remove),
459	.shutdown	= at91_rtc_shutdown,
460	.suspend	= at91_rtc_suspend,
461	.resume		= at91_rtc_resume,
462	.driver		= {
463		.name	= "rtc-at91sam9",
464		.owner	= THIS_MODULE,
 
465	},
466};
467
468static int __init at91_rtc_init(void)
469{
470	return platform_driver_register(&at91_rtc_driver);
471}
472module_init(at91_rtc_init);
473
474static void __exit at91_rtc_exit(void)
475{
476	platform_driver_unregister(&at91_rtc_driver);
477}
478module_exit(at91_rtc_exit);
479
480
481MODULE_AUTHOR("Michel Benoit");
482MODULE_DESCRIPTION("RTC driver for Atmel AT91SAM9x");
483MODULE_LICENSE("GPL");
v3.15
  1/*
  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>
 21#include <linux/slab.h>
 22#include <linux/platform_data/atmel.h>
 23#include <linux/io.h>
 24
 
 25#include <mach/at91_rtt.h>
 26#include <mach/cpu.h>
 27#include <mach/hardware.h>
 28
 29/*
 30 * This driver uses two configurable hardware resources that live in the
 31 * AT91SAM9 backup power domain (intended to be powered at all times)
 32 * to implement the Real Time Clock interfaces
 33 *
 34 *  - A "Real-time Timer" (RTT) counts up in seconds from a base time.
 35 *    We can't assign the counter value (CRTV) ... but we can reset it.
 36 *
 37 *  - One of the "General Purpose Backup Registers" (GPBRs) holds the
 38 *    base time, normally an offset from the beginning of the POSIX
 39 *    epoch (1970-Jan-1 00:00:00 UTC).  Some systems also include the
 40 *    local timezone's offset.
 41 *
 42 * The RTC's value is the RTT counter plus that offset.  The RTC's alarm
 43 * is likewise a base (ALMV) plus that offset.
 44 *
 45 * Not all RTTs will be used as RTCs; some systems have multiple RTTs to
 46 * choose from, or a "real" RTC module.  All systems have multiple GPBR
 47 * registers available, likewise usable for more than "RTC" support.
 48 */
 49
 50/*
 51 * We store ALARM_DISABLED in ALMV to record that no alarm is set.
 52 * It's also the reset value for that field.
 53 */
 54#define ALARM_DISABLED	((u32)~0)
 55
 56
 57struct sam9_rtc {
 58	void __iomem		*rtt;
 59	struct rtc_device	*rtcdev;
 60	u32			imr;
 61	void __iomem		*gpbr;
 62	int 			irq;
 63};
 64
 65#define rtt_readl(rtc, field) \
 66	__raw_readl((rtc)->rtt + AT91_RTT_ ## field)
 67#define rtt_writel(rtc, field, val) \
 68	__raw_writel((val), (rtc)->rtt + AT91_RTT_ ## field)
 69
 70#define gpbr_readl(rtc) \
 71	__raw_readl((rtc)->gpbr)
 72#define gpbr_writel(rtc, val) \
 73	__raw_writel((val), (rtc)->gpbr)
 74
 75/*
 76 * Read current time and date in RTC
 77 */
 78static int at91_rtc_readtime(struct device *dev, struct rtc_time *tm)
 79{
 80	struct sam9_rtc *rtc = dev_get_drvdata(dev);
 81	u32 secs, secs2;
 82	u32 offset;
 83
 84	/* read current time offset */
 85	offset = gpbr_readl(rtc);
 86	if (offset == 0)
 87		return -EILSEQ;
 88
 89	/* reread the counter to help sync the two clock domains */
 90	secs = rtt_readl(rtc, VR);
 91	secs2 = rtt_readl(rtc, VR);
 92	if (secs != secs2)
 93		secs = rtt_readl(rtc, VR);
 94
 95	rtc_time_to_tm(offset + secs, tm);
 96
 97	dev_dbg(dev, "%s: %4d-%02d-%02d %02d:%02d:%02d\n", "readtime",
 98		1900 + tm->tm_year, tm->tm_mon, tm->tm_mday,
 99		tm->tm_hour, tm->tm_min, tm->tm_sec);
100
101	return 0;
102}
103
104/*
105 * Set current time and date in RTC
106 */
107static int at91_rtc_settime(struct device *dev, struct rtc_time *tm)
108{
109	struct sam9_rtc *rtc = dev_get_drvdata(dev);
110	int err;
111	u32 offset, alarm, mr;
112	unsigned long secs;
113
114	dev_dbg(dev, "%s: %4d-%02d-%02d %02d:%02d:%02d\n", "settime",
115		1900 + tm->tm_year, tm->tm_mon, tm->tm_mday,
116		tm->tm_hour, tm->tm_min, tm->tm_sec);
117
118	err = rtc_tm_to_time(tm, &secs);
119	if (err != 0)
120		return err;
121
122	mr = rtt_readl(rtc, MR);
123
124	/* disable interrupts */
125	rtt_writel(rtc, MR, mr & ~(AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN));
126
127	/* read current time offset */
128	offset = gpbr_readl(rtc);
129
130	/* store the new base time in a battery backup register */
131	secs += 1;
132	gpbr_writel(rtc, secs);
133
134	/* adjust the alarm time for the new base */
135	alarm = rtt_readl(rtc, AR);
136	if (alarm != ALARM_DISABLED) {
137		if (offset > secs) {
138			/* time jumped backwards, increase time until alarm */
139			alarm += (offset - secs);
140		} else if ((alarm + offset) > secs) {
141			/* time jumped forwards, decrease time until alarm */
142			alarm -= (secs - offset);
143		} else {
144			/* time jumped past the alarm, disable alarm */
145			alarm = ALARM_DISABLED;
146			mr &= ~AT91_RTT_ALMIEN;
147		}
148		rtt_writel(rtc, AR, alarm);
149	}
150
151	/* reset the timer, and re-enable interrupts */
152	rtt_writel(rtc, MR, mr | AT91_RTT_RTTRST);
153
154	return 0;
155}
156
157static int at91_rtc_readalarm(struct device *dev, struct rtc_wkalrm *alrm)
158{
159	struct sam9_rtc *rtc = dev_get_drvdata(dev);
160	struct rtc_time *tm = &alrm->time;
161	u32 alarm = rtt_readl(rtc, AR);
162	u32 offset;
163
164	offset = gpbr_readl(rtc);
165	if (offset == 0)
166		return -EILSEQ;
167
168	memset(alrm, 0, sizeof(*alrm));
169	if (alarm != ALARM_DISABLED && offset != 0) {
170		rtc_time_to_tm(offset + alarm, tm);
171
172		dev_dbg(dev, "%s: %4d-%02d-%02d %02d:%02d:%02d\n", "readalarm",
173			1900 + tm->tm_year, tm->tm_mon, tm->tm_mday,
174			tm->tm_hour, tm->tm_min, tm->tm_sec);
175
176		if (rtt_readl(rtc, MR) & AT91_RTT_ALMIEN)
177			alrm->enabled = 1;
178	}
179
180	return 0;
181}
182
183static int at91_rtc_setalarm(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	unsigned long secs;
188	u32 offset;
189	u32 mr;
190	int err;
191
192	err = rtc_tm_to_time(tm, &secs);
193	if (err != 0)
194		return err;
195
196	offset = gpbr_readl(rtc);
197	if (offset == 0) {
198		/* time is not set */
199		return -EILSEQ;
200	}
201	mr = rtt_readl(rtc, MR);
202	rtt_writel(rtc, MR, mr & ~AT91_RTT_ALMIEN);
203
204	/* alarm in the past? finish and leave disabled */
205	if (secs <= offset) {
206		rtt_writel(rtc, AR, ALARM_DISABLED);
207		return 0;
208	}
209
210	/* else set alarm and maybe enable it */
211	rtt_writel(rtc, AR, secs - offset);
212	if (alrm->enabled)
213		rtt_writel(rtc, MR, mr | AT91_RTT_ALMIEN);
214
215	dev_dbg(dev, "%s: %4d-%02d-%02d %02d:%02d:%02d\n", "setalarm",
216		tm->tm_year, tm->tm_mon, tm->tm_mday, tm->tm_hour,
217		tm->tm_min, tm->tm_sec);
218
219	return 0;
220}
221
222static int at91_rtc_alarm_irq_enable(struct device *dev, unsigned int enabled)
223{
224	struct sam9_rtc *rtc = dev_get_drvdata(dev);
225	u32 mr = rtt_readl(rtc, MR);
226
227	dev_dbg(dev, "alarm_irq_enable: enabled=%08x, mr %08x\n", enabled, mr);
228	if (enabled)
229		rtt_writel(rtc, MR, mr | AT91_RTT_ALMIEN);
230	else
231		rtt_writel(rtc, MR, mr & ~AT91_RTT_ALMIEN);
232	return 0;
233}
234
235/*
236 * Provide additional RTC information in /proc/driver/rtc
237 */
238static int at91_rtc_proc(struct device *dev, struct seq_file *seq)
239{
240	struct sam9_rtc *rtc = dev_get_drvdata(dev);
241	u32 mr = mr = rtt_readl(rtc, MR);
242
243	seq_printf(seq, "update_IRQ\t: %s\n",
244			(mr & AT91_RTT_RTTINCIEN) ? "yes" : "no");
245	return 0;
246}
247
248/*
249 * IRQ handler for the RTC
250 */
251static irqreturn_t at91_rtc_interrupt(int irq, void *_rtc)
252{
253	struct sam9_rtc *rtc = _rtc;
254	u32 sr, mr;
255	unsigned long events = 0;
256
257	/* Shared interrupt may be for another device.  Note: reading
258	 * SR clears it, so we must only read it in this irq handler!
259	 */
260	mr = rtt_readl(rtc, MR) & (AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN);
261	sr = rtt_readl(rtc, SR) & (mr >> 16);
262	if (!sr)
263		return IRQ_NONE;
264
265	/* alarm status */
266	if (sr & AT91_RTT_ALMS)
267		events |= (RTC_AF | RTC_IRQF);
268
269	/* timer update/increment */
270	if (sr & AT91_RTT_RTTINC)
271		events |= (RTC_UF | RTC_IRQF);
272
273	rtc_update_irq(rtc->rtcdev, 1, events);
274
275	pr_debug("%s: num=%ld, events=0x%02lx\n", __func__,
276		events >> 8, events & 0x000000FF);
277
278	return IRQ_HANDLED;
279}
280
281static const struct rtc_class_ops at91_rtc_ops = {
282	.read_time	= at91_rtc_readtime,
283	.set_time	= at91_rtc_settime,
284	.read_alarm	= at91_rtc_readalarm,
285	.set_alarm	= at91_rtc_setalarm,
286	.proc		= at91_rtc_proc,
287	.alarm_irq_enable = at91_rtc_alarm_irq_enable,
288};
289
290/*
291 * Initialize and install RTC driver
292 */
293static int at91_rtc_probe(struct platform_device *pdev)
294{
295	struct resource	*r, *r_gpbr;
296	struct sam9_rtc	*rtc;
297	int		ret, irq;
298	u32		mr;
299
300	r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
301	r_gpbr = platform_get_resource(pdev, IORESOURCE_MEM, 1);
302	if (!r || !r_gpbr) {
303		dev_err(&pdev->dev, "need 2 ressources\n");
304		return -ENODEV;
305	}
306
307	irq = platform_get_irq(pdev, 0);
308	if (irq < 0) {
309		dev_err(&pdev->dev, "failed to get interrupt resource\n");
310		return irq;
311	}
312
313	rtc = devm_kzalloc(&pdev->dev, sizeof(*rtc), GFP_KERNEL);
314	if (!rtc)
315		return -ENOMEM;
316
317	rtc->irq = irq;
318
319	/* platform setup code should have handled this; sigh */
320	if (!device_can_wakeup(&pdev->dev))
321		device_init_wakeup(&pdev->dev, 1);
322
323	platform_set_drvdata(pdev, rtc);
324	rtc->rtt = devm_ioremap(&pdev->dev, r->start, resource_size(r));
325	if (!rtc->rtt) {
326		dev_err(&pdev->dev, "failed to map registers, aborting.\n");
327		return -ENOMEM;
 
328	}
329
330	rtc->gpbr = devm_ioremap(&pdev->dev, r_gpbr->start,
331				resource_size(r_gpbr));
332	if (!rtc->gpbr) {
333		dev_err(&pdev->dev, "failed to map gpbr registers, aborting.\n");
334		return -ENOMEM;
 
335	}
336
337	mr = rtt_readl(rtc, MR);
338
339	/* unless RTT is counting at 1 Hz, re-initialize it */
340	if ((mr & AT91_RTT_RTPRES) != AT91_SLOW_CLOCK) {
341		mr = AT91_RTT_RTTRST | (AT91_SLOW_CLOCK & AT91_RTT_RTPRES);
342		gpbr_writel(rtc, 0);
343	}
344
345	/* disable all interrupts (same as on shutdown path) */
346	mr &= ~(AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN);
347	rtt_writel(rtc, MR, mr);
348
349	rtc->rtcdev = devm_rtc_device_register(&pdev->dev, pdev->name,
350					&at91_rtc_ops, THIS_MODULE);
351	if (IS_ERR(rtc->rtcdev))
352		return PTR_ERR(rtc->rtcdev);
 
 
353
354	/* register irq handler after we know what name we'll use */
355	ret = devm_request_irq(&pdev->dev, rtc->irq, at91_rtc_interrupt,
356				IRQF_SHARED, dev_name(&rtc->rtcdev->dev), rtc);
 
357	if (ret) {
358		dev_dbg(&pdev->dev, "can't share IRQ %d?\n", rtc->irq);
359		return ret;
 
360	}
361
362	/* NOTE:  sam9260 rev A silicon has a ROM bug which resets the
363	 * RTT on at least some reboots.  If you have that chip, you must
364	 * initialize the time from some external source like a GPS, wall
365	 * clock, discrete RTC, etc
366	 */
367
368	if (gpbr_readl(rtc) == 0)
369		dev_warn(&pdev->dev, "%s: SET TIME!\n",
370				dev_name(&rtc->rtcdev->dev));
371
372	return 0;
 
 
 
 
 
 
 
 
 
373}
374
375/*
376 * Disable and remove the RTC driver
377 */
378static int at91_rtc_remove(struct platform_device *pdev)
379{
380	struct sam9_rtc	*rtc = platform_get_drvdata(pdev);
381	u32		mr = rtt_readl(rtc, MR);
382
383	/* disable all interrupts */
384	rtt_writel(rtc, MR, mr & ~(AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN));
 
 
 
385
 
 
 
 
386	return 0;
387}
388
389static void at91_rtc_shutdown(struct platform_device *pdev)
390{
391	struct sam9_rtc	*rtc = platform_get_drvdata(pdev);
392	u32		mr = rtt_readl(rtc, MR);
393
394	rtc->imr = mr & (AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN);
395	rtt_writel(rtc, MR, mr & ~rtc->imr);
396}
397
398#ifdef CONFIG_PM_SLEEP
399
400/* AT91SAM9 RTC Power management control */
401
402static int at91_rtc_suspend(struct device *dev)
 
403{
404	struct sam9_rtc	*rtc = dev_get_drvdata(dev);
405	u32		mr = rtt_readl(rtc, MR);
406
407	/*
408	 * This IRQ is shared with DBGU and other hardware which isn't
409	 * necessarily a wakeup event source.
410	 */
411	rtc->imr = mr & (AT91_RTT_ALMIEN | AT91_RTT_RTTINCIEN);
412	if (rtc->imr) {
413		if (device_may_wakeup(dev) && (mr & AT91_RTT_ALMIEN)) {
414			enable_irq_wake(rtc->irq);
415			/* don't let RTTINC cause wakeups */
416			if (mr & AT91_RTT_RTTINCIEN)
417				rtt_writel(rtc, MR, mr & ~AT91_RTT_RTTINCIEN);
418		} else
419			rtt_writel(rtc, MR, mr & ~rtc->imr);
420	}
421
422	return 0;
423}
424
425static int at91_rtc_resume(struct device *dev)
426{
427	struct sam9_rtc	*rtc = dev_get_drvdata(dev);
428	u32		mr;
429
430	if (rtc->imr) {
431		if (device_may_wakeup(dev))
432			disable_irq_wake(rtc->irq);
433		mr = rtt_readl(rtc, MR);
434		rtt_writel(rtc, MR, mr | rtc->imr);
435	}
436
437	return 0;
438}
 
 
 
439#endif
440
441static SIMPLE_DEV_PM_OPS(at91_rtc_pm_ops, at91_rtc_suspend, at91_rtc_resume);
442
443static struct platform_driver at91_rtc_driver = {
444	.probe		= at91_rtc_probe,
445	.remove		= at91_rtc_remove,
446	.shutdown	= at91_rtc_shutdown,
 
 
447	.driver		= {
448		.name	= "rtc-at91sam9",
449		.owner	= THIS_MODULE,
450		.pm	= &at91_rtc_pm_ops,
451	},
452};
453
454module_platform_driver(at91_rtc_driver);
 
 
 
 
 
 
 
 
 
 
 
455
456MODULE_AUTHOR("Michel Benoit");
457MODULE_DESCRIPTION("RTC driver for Atmel AT91SAM9x");
458MODULE_LICENSE("GPL");