blob: b11485b9f21ca1c3c90f7bc96cfffb32c66e0b8c [file] [log] [blame]
Wu, Bryan8cc75c92007-05-06 14:50:32 -07001/*
2 * Blackfin On-Chip Real Time Clock Driver
Mike Frysinger99800602009-06-30 11:41:43 -07003 * Supports BF51x/BF52x/BF53[123]/BF53[467]/BF54x
Wu, Bryan8cc75c92007-05-06 14:50:32 -07004 *
Mike Frysinger99800602009-06-30 11:41:43 -07005 * Copyright 2004-2009 Analog Devices Inc.
Wu, Bryan8cc75c92007-05-06 14:50:32 -07006 *
7 * Enter bugs at http://blackfin.uclinux.org/
8 *
9 * Licensed under the GPL-2 or later.
10 */
11
12/* The biggest issue we deal with in this driver is that register writes are
13 * synced to the RTC frequency of 1Hz. So if you write to a register and
14 * attempt to write again before the first write has completed, the new write
15 * is simply discarded. This can easily be troublesome if userspace disables
16 * one event (say periodic) and then right after enables an event (say alarm).
17 * Since all events are maintained in the same interrupt mask register, if
18 * we wrote to it to disable the first event and then wrote to it again to
19 * enable the second event, that second event would not be enabled as the
20 * write would be discarded and things quickly fall apart.
21 *
22 * To keep this delay from significantly degrading performance (we, in theory,
23 * would have to sleep for up to 1 second everytime we wanted to write a
24 * register), we only check the write pending status before we start to issue
25 * a new write. We bank on the idea that it doesnt matter when the sync
26 * happens so long as we don't attempt another write before it does. The only
27 * time userspace would take this penalty is when they try and do multiple
28 * operations right after another ... but in this case, they need to take the
29 * sync penalty, so we should be OK.
30 *
31 * Also note that the RTC_ISTAT register does not suffer this penalty; its
32 * writes to clear status registers complete immediately.
33 */
34
Mike Frysinger26cb8bb2008-08-05 13:01:21 -070035/* It may seem odd that there is no SWCNT code in here (which would be exposed
36 * via the periodic interrupt event, or PIE). Since the Blackfin RTC peripheral
37 * runs in units of seconds (N/HZ) but the Linux framework runs in units of HZ
38 * (2^N HZ), there is no point in keeping code that only provides 1 HZ PIEs.
39 * The same exact behavior can be accomplished by using the update interrupt
40 * event (UIE). Maybe down the line the RTC peripheral will suck less in which
41 * case we can re-introduce PIE support.
42 */
43
Wu, Bryan8cc75c92007-05-06 14:50:32 -070044#include <linux/bcd.h>
Mike Frysinger095b9d52008-02-06 01:38:51 -080045#include <linux/completion.h>
Wu, Bryan8cc75c92007-05-06 14:50:32 -070046#include <linux/delay.h>
Mike Frysinger095b9d52008-02-06 01:38:51 -080047#include <linux/init.h>
48#include <linux/interrupt.h>
49#include <linux/kernel.h>
50#include <linux/module.h>
51#include <linux/platform_device.h>
52#include <linux/rtc.h>
53#include <linux/seq_file.h>
Wu, Bryan8cc75c92007-05-06 14:50:32 -070054
55#include <asm/blackfin.h>
56
Mike Frysinger5438de42008-02-06 01:38:49 -080057#define dev_dbg_stamp(dev) dev_dbg(dev, "%s:%i: here i am\n", __func__, __LINE__)
Wu, Bryan8cc75c92007-05-06 14:50:32 -070058
59struct bfin_rtc {
60 struct rtc_device *rtc_dev;
61 struct rtc_time rtc_alarm;
Mike Frysinger095b9d52008-02-06 01:38:51 -080062 u16 rtc_wrote_regs;
Wu, Bryan8cc75c92007-05-06 14:50:32 -070063};
64
65/* Bit values for the ISTAT / ICTL registers */
66#define RTC_ISTAT_WRITE_COMPLETE 0x8000
67#define RTC_ISTAT_WRITE_PENDING 0x4000
68#define RTC_ISTAT_ALARM_DAY 0x0040
69#define RTC_ISTAT_24HR 0x0020
70#define RTC_ISTAT_HOUR 0x0010
71#define RTC_ISTAT_MIN 0x0008
72#define RTC_ISTAT_SEC 0x0004
73#define RTC_ISTAT_ALARM 0x0002
74#define RTC_ISTAT_STOPWATCH 0x0001
75
76/* Shift values for RTC_STAT register */
77#define DAY_BITS_OFF 17
78#define HOUR_BITS_OFF 12
79#define MIN_BITS_OFF 6
80#define SEC_BITS_OFF 0
81
82/* Some helper functions to convert between the common RTC notion of time
Mike Frysinger5c236342008-02-06 01:38:47 -080083 * and the internal Blackfin notion that is encoded in 32bits.
Wu, Bryan8cc75c92007-05-06 14:50:32 -070084 */
85static inline u32 rtc_time_to_bfin(unsigned long now)
86{
87 u32 sec = (now % 60);
88 u32 min = (now % (60 * 60)) / 60;
89 u32 hour = (now % (60 * 60 * 24)) / (60 * 60);
90 u32 days = (now / (60 * 60 * 24));
91 return (sec << SEC_BITS_OFF) +
92 (min << MIN_BITS_OFF) +
93 (hour << HOUR_BITS_OFF) +
94 (days << DAY_BITS_OFF);
95}
96static inline unsigned long rtc_bfin_to_time(u32 rtc_bfin)
97{
98 return (((rtc_bfin >> SEC_BITS_OFF) & 0x003F)) +
99 (((rtc_bfin >> MIN_BITS_OFF) & 0x003F) * 60) +
100 (((rtc_bfin >> HOUR_BITS_OFF) & 0x001F) * 60 * 60) +
101 (((rtc_bfin >> DAY_BITS_OFF) & 0x7FFF) * 60 * 60 * 24);
102}
103static inline void rtc_bfin_to_tm(u32 rtc_bfin, struct rtc_time *tm)
104{
105 rtc_time_to_tm(rtc_bfin_to_time(rtc_bfin), tm);
106}
107
Mike Frysinger095b9d52008-02-06 01:38:51 -0800108/**
109 * bfin_rtc_sync_pending - make sure pending writes have complete
110 *
111 * Wait for the previous write to a RTC register to complete.
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700112 * Unfortunately, we can't sleep here as that introduces a race condition when
113 * turning on interrupt events. Consider this:
114 * - process sets alarm
115 * - process enables alarm
116 * - process sleeps while waiting for rtc write to sync
117 * - interrupt fires while process is sleeping
118 * - interrupt acks the event by writing to ISTAT
119 * - interrupt sets the WRITE PENDING bit
120 * - interrupt handler finishes
121 * - process wakes up, sees WRITE PENDING bit set, goes to sleep
122 * - interrupt fires while process is sleeping
123 * If anyone can point out the obvious solution here, i'm listening :). This
124 * shouldn't be an issue on an SMP or preempt system as this function should
125 * only be called with the rtc lock held.
Mike Frysinger5c236342008-02-06 01:38:47 -0800126 *
127 * Other options:
128 * - disable PREN so the sync happens at 32.768kHZ ... but this changes the
129 * inc rate for all RTC registers from 1HZ to 32.768kHZ ...
130 * - use the write complete IRQ
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700131 */
Mike Frysinger095b9d52008-02-06 01:38:51 -0800132/*
133static void bfin_rtc_sync_pending_polled(void)
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700134{
Mike Frysinger095b9d52008-02-06 01:38:51 -0800135 while (!(bfin_read_RTC_ISTAT() & RTC_ISTAT_WRITE_COMPLETE))
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700136 if (!(bfin_read_RTC_ISTAT() & RTC_ISTAT_WRITE_PENDING))
137 break;
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700138 bfin_write_RTC_ISTAT(RTC_ISTAT_WRITE_COMPLETE);
139}
Mike Frysinger095b9d52008-02-06 01:38:51 -0800140*/
141static DECLARE_COMPLETION(bfin_write_complete);
142static void bfin_rtc_sync_pending(struct device *dev)
143{
144 dev_dbg_stamp(dev);
145 while (bfin_read_RTC_ISTAT() & RTC_ISTAT_WRITE_PENDING)
146 wait_for_completion_timeout(&bfin_write_complete, HZ * 5);
147 dev_dbg_stamp(dev);
148}
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700149
Mike Frysinger095b9d52008-02-06 01:38:51 -0800150/**
151 * bfin_rtc_reset - set RTC to sane/known state
152 *
153 * Initialize the RTC. Enable pre-scaler to scale RTC clock
154 * to 1Hz and clear interrupt/status registers.
155 */
Mike Frysinger3b128fe2008-08-05 13:01:19 -0700156static void bfin_rtc_reset(struct device *dev, u16 rtc_ictl)
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700157{
Mike Frysinger5438de42008-02-06 01:38:49 -0800158 struct bfin_rtc *rtc = dev_get_drvdata(dev);
Mike Frysinger095b9d52008-02-06 01:38:51 -0800159 dev_dbg_stamp(dev);
160 bfin_rtc_sync_pending(dev);
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700161 bfin_write_RTC_PREN(0x1);
Mike Frysinger3b128fe2008-08-05 13:01:19 -0700162 bfin_write_RTC_ICTL(rtc_ictl);
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700163 bfin_write_RTC_ALARM(0);
164 bfin_write_RTC_ISTAT(0xFFFF);
Mike Frysinger095b9d52008-02-06 01:38:51 -0800165 rtc->rtc_wrote_regs = 0;
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700166}
167
Mike Frysinger095b9d52008-02-06 01:38:51 -0800168/**
169 * bfin_rtc_interrupt - handle interrupt from RTC
170 *
171 * Since we handle all RTC events here, we have to make sure the requested
172 * interrupt is enabled (in RTC_ICTL) as the event status register (RTC_ISTAT)
173 * always gets updated regardless of the interrupt being enabled. So when one
174 * even we care about (e.g. stopwatch) goes off, we don't want to turn around
175 * and say that other events have happened as well (e.g. second). We do not
176 * have to worry about pending writes to the RTC_ICTL register as interrupts
177 * only fire if they are enabled in the RTC_ICTL register.
178 */
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700179static irqreturn_t bfin_rtc_interrupt(int irq, void *dev_id)
180{
Mike Frysingerd7827d82008-02-06 01:38:47 -0800181 struct device *dev = dev_id;
182 struct bfin_rtc *rtc = dev_get_drvdata(dev);
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700183 unsigned long events = 0;
Mike Frysinger095b9d52008-02-06 01:38:51 -0800184 bool write_complete = false;
185 u16 rtc_istat, rtc_ictl;
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700186
Mike Frysinger5438de42008-02-06 01:38:49 -0800187 dev_dbg_stamp(dev);
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700188
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700189 rtc_istat = bfin_read_RTC_ISTAT();
Mike Frysinger095b9d52008-02-06 01:38:51 -0800190 rtc_ictl = bfin_read_RTC_ICTL();
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700191
Mike Frysinger095b9d52008-02-06 01:38:51 -0800192 if (rtc_istat & RTC_ISTAT_WRITE_COMPLETE) {
193 bfin_write_RTC_ISTAT(RTC_ISTAT_WRITE_COMPLETE);
194 write_complete = true;
195 complete(&bfin_write_complete);
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700196 }
197
Mike Frysinger095b9d52008-02-06 01:38:51 -0800198 if (rtc_ictl & (RTC_ISTAT_ALARM | RTC_ISTAT_ALARM_DAY)) {
199 if (rtc_istat & (RTC_ISTAT_ALARM | RTC_ISTAT_ALARM_DAY)) {
200 bfin_write_RTC_ISTAT(RTC_ISTAT_ALARM | RTC_ISTAT_ALARM_DAY);
201 events |= RTC_AF | RTC_IRQF;
202 }
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700203 }
204
Mike Frysinger095b9d52008-02-06 01:38:51 -0800205 if (rtc_ictl & RTC_ISTAT_SEC) {
206 if (rtc_istat & RTC_ISTAT_SEC) {
207 bfin_write_RTC_ISTAT(RTC_ISTAT_SEC);
208 events |= RTC_UF | RTC_IRQF;
209 }
210 }
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700211
Mike Frysinger095b9d52008-02-06 01:38:51 -0800212 if (events)
213 rtc_update_irq(rtc->rtc_dev, 1, events);
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700214
Mike Frysinger095b9d52008-02-06 01:38:51 -0800215 if (write_complete || events)
216 return IRQ_HANDLED;
217 else
218 return IRQ_NONE;
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700219}
220
Mike Frysinger605eb8b2008-08-05 13:01:18 -0700221static void bfin_rtc_int_set(u16 rtc_int)
Mike Frysinger095b9d52008-02-06 01:38:51 -0800222{
223 bfin_write_RTC_ISTAT(rtc_int);
224 bfin_write_RTC_ICTL(bfin_read_RTC_ICTL() | rtc_int);
225}
Mike Frysinger605eb8b2008-08-05 13:01:18 -0700226static void bfin_rtc_int_clear(u16 rtc_int)
Mike Frysinger095b9d52008-02-06 01:38:51 -0800227{
228 bfin_write_RTC_ICTL(bfin_read_RTC_ICTL() & rtc_int);
229}
230static void bfin_rtc_int_set_alarm(struct bfin_rtc *rtc)
231{
232 /* Blackfin has different bits for whether the alarm is
233 * more than 24 hours away.
234 */
Mike Frysinger605eb8b2008-08-05 13:01:18 -0700235 bfin_rtc_int_set(rtc->rtc_alarm.tm_yday == -1 ? RTC_ISTAT_ALARM : RTC_ISTAT_ALARM_DAY);
Mike Frysinger095b9d52008-02-06 01:38:51 -0800236}
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700237static int bfin_rtc_ioctl(struct device *dev, unsigned int cmd, unsigned long arg)
238{
239 struct bfin_rtc *rtc = dev_get_drvdata(dev);
Mike Frysinger095b9d52008-02-06 01:38:51 -0800240 int ret = 0;
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700241
Mike Frysinger5438de42008-02-06 01:38:49 -0800242 dev_dbg_stamp(dev);
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700243
Mike Frysinger095b9d52008-02-06 01:38:51 -0800244 bfin_rtc_sync_pending(dev);
245
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700246 switch (cmd) {
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700247 case RTC_UIE_ON:
Mike Frysinger5438de42008-02-06 01:38:49 -0800248 dev_dbg_stamp(dev);
Mike Frysinger605eb8b2008-08-05 13:01:18 -0700249 bfin_rtc_int_set(RTC_ISTAT_SEC);
Mike Frysinger095b9d52008-02-06 01:38:51 -0800250 break;
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700251 case RTC_UIE_OFF:
Mike Frysinger5438de42008-02-06 01:38:49 -0800252 dev_dbg_stamp(dev);
Mike Frysinger605eb8b2008-08-05 13:01:18 -0700253 bfin_rtc_int_clear(~RTC_ISTAT_SEC);
Mike Frysinger095b9d52008-02-06 01:38:51 -0800254 break;
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700255
Mike Frysinger095b9d52008-02-06 01:38:51 -0800256 case RTC_AIE_ON:
Mike Frysinger5438de42008-02-06 01:38:49 -0800257 dev_dbg_stamp(dev);
Mike Frysinger095b9d52008-02-06 01:38:51 -0800258 bfin_rtc_int_set_alarm(rtc);
259 break;
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700260 case RTC_AIE_OFF:
Mike Frysinger5438de42008-02-06 01:38:49 -0800261 dev_dbg_stamp(dev);
Mike Frysinger605eb8b2008-08-05 13:01:18 -0700262 bfin_rtc_int_clear(~(RTC_ISTAT_ALARM | RTC_ISTAT_ALARM_DAY));
Mike Frysinger095b9d52008-02-06 01:38:51 -0800263 break;
264
265 default:
266 dev_dbg_stamp(dev);
267 ret = -ENOIOCTLCMD;
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700268 }
269
Mike Frysinger095b9d52008-02-06 01:38:51 -0800270 return ret;
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700271}
272
273static int bfin_rtc_read_time(struct device *dev, struct rtc_time *tm)
274{
275 struct bfin_rtc *rtc = dev_get_drvdata(dev);
276
Mike Frysinger5438de42008-02-06 01:38:49 -0800277 dev_dbg_stamp(dev);
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700278
Mike Frysinger095b9d52008-02-06 01:38:51 -0800279 if (rtc->rtc_wrote_regs & 0x1)
280 bfin_rtc_sync_pending(dev);
281
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700282 rtc_bfin_to_tm(bfin_read_RTC_STAT(), tm);
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700283
284 return 0;
285}
286
287static int bfin_rtc_set_time(struct device *dev, struct rtc_time *tm)
288{
289 struct bfin_rtc *rtc = dev_get_drvdata(dev);
290 int ret;
291 unsigned long now;
292
Mike Frysinger5438de42008-02-06 01:38:49 -0800293 dev_dbg_stamp(dev);
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700294
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700295 ret = rtc_tm_to_time(tm, &now);
296 if (ret == 0) {
Mike Frysinger095b9d52008-02-06 01:38:51 -0800297 if (rtc->rtc_wrote_regs & 0x1)
298 bfin_rtc_sync_pending(dev);
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700299 bfin_write_RTC_STAT(rtc_time_to_bfin(now));
Mike Frysinger095b9d52008-02-06 01:38:51 -0800300 rtc->rtc_wrote_regs = 0x1;
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700301 }
302
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700303 return ret;
304}
305
306static int bfin_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
307{
308 struct bfin_rtc *rtc = dev_get_drvdata(dev);
Mike Frysinger5438de42008-02-06 01:38:49 -0800309 dev_dbg_stamp(dev);
Mike Frysinger48c1a562008-02-06 01:38:50 -0800310 alrm->time = rtc->rtc_alarm;
Mike Frysinger095b9d52008-02-06 01:38:51 -0800311 bfin_rtc_sync_pending(dev);
Mike Frysinger68db3042008-02-06 01:38:49 -0800312 alrm->enabled = !!(bfin_read_RTC_ICTL() & (RTC_ISTAT_ALARM | RTC_ISTAT_ALARM_DAY));
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700313 return 0;
314}
315
316static int bfin_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alrm)
317{
318 struct bfin_rtc *rtc = dev_get_drvdata(dev);
Mike Frysinger095b9d52008-02-06 01:38:51 -0800319 unsigned long rtc_alarm;
320
Mike Frysinger5438de42008-02-06 01:38:49 -0800321 dev_dbg_stamp(dev);
Mike Frysinger095b9d52008-02-06 01:38:51 -0800322
323 if (rtc_tm_to_time(&alrm->time, &rtc_alarm))
324 return -EINVAL;
325
Mike Frysinger68db3042008-02-06 01:38:49 -0800326 rtc->rtc_alarm = alrm->time;
Mike Frysinger095b9d52008-02-06 01:38:51 -0800327
328 bfin_rtc_sync_pending(dev);
329 bfin_write_RTC_ALARM(rtc_time_to_bfin(rtc_alarm));
330 if (alrm->enabled)
331 bfin_rtc_int_set_alarm(rtc);
332
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700333 return 0;
334}
335
336static int bfin_rtc_proc(struct device *dev, struct seq_file *seq)
337{
Mike Frysinger64061162008-02-06 01:38:48 -0800338#define yesno(x) ((x) ? "yes" : "no")
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700339 u16 ictl = bfin_read_RTC_ICTL();
Mike Frysinger5438de42008-02-06 01:38:49 -0800340 dev_dbg_stamp(dev);
Mike Frysinger64061162008-02-06 01:38:48 -0800341 seq_printf(seq,
342 "alarm_IRQ\t: %s\n"
343 "wkalarm_IRQ\t: %s\n"
Mike Frysinger26cb8bb2008-08-05 13:01:21 -0700344 "seconds_IRQ\t: %s\n",
Mike Frysinger64061162008-02-06 01:38:48 -0800345 yesno(ictl & RTC_ISTAT_ALARM),
346 yesno(ictl & RTC_ISTAT_ALARM_DAY),
Mike Frysinger26cb8bb2008-08-05 13:01:21 -0700347 yesno(ictl & RTC_ISTAT_SEC));
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700348 return 0;
Mike Frysinger64061162008-02-06 01:38:48 -0800349#undef yesno
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700350}
351
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700352static struct rtc_class_ops bfin_rtc_ops = {
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700353 .ioctl = bfin_rtc_ioctl,
354 .read_time = bfin_rtc_read_time,
355 .set_time = bfin_rtc_set_time,
356 .read_alarm = bfin_rtc_read_alarm,
357 .set_alarm = bfin_rtc_set_alarm,
358 .proc = bfin_rtc_proc,
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700359};
360
361static int __devinit bfin_rtc_probe(struct platform_device *pdev)
362{
363 struct bfin_rtc *rtc;
Mike Frysingerfe2e1cf2008-08-20 14:09:01 -0700364 struct device *dev = &pdev->dev;
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700365 int ret = 0;
Mike Frysinger99800602009-06-30 11:41:43 -0700366 unsigned long timeout = jiffies + HZ;
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700367
Mike Frysingerfe2e1cf2008-08-20 14:09:01 -0700368 dev_dbg_stamp(dev);
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700369
Mike Frysingerfe2e1cf2008-08-20 14:09:01 -0700370 /* Allocate memory for our RTC struct */
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700371 rtc = kzalloc(sizeof(*rtc), GFP_KERNEL);
372 if (unlikely(!rtc))
373 return -ENOMEM;
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700374 platform_set_drvdata(pdev, rtc);
Mike Frysinger8c9166f2008-08-20 14:09:02 -0700375 device_init_wakeup(dev, 1);
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700376
Mike Frysinger99800602009-06-30 11:41:43 -0700377 /* Register our RTC with the RTC framework */
378 rtc->rtc_dev = rtc_device_register(pdev->name, dev, &bfin_rtc_ops,
379 THIS_MODULE);
380 if (unlikely(IS_ERR(rtc->rtc_dev))) {
381 ret = PTR_ERR(rtc->rtc_dev);
382 goto err;
383 }
384
Mike Frysingerfe2e1cf2008-08-20 14:09:01 -0700385 /* Grab the IRQ and init the hardware */
Michael Hennerich6bff5fb2009-09-22 16:46:25 -0700386 ret = request_irq(IRQ_RTC, bfin_rtc_interrupt, 0, pdev->name, dev);
Mike Frysingerfe2e1cf2008-08-20 14:09:01 -0700387 if (unlikely(ret))
Mike Frysinger99800602009-06-30 11:41:43 -0700388 goto err_reg;
Mike Frysingerd0fd9372008-08-20 14:09:03 -0700389 /* sometimes the bootloader touched things, but the write complete was not
390 * enabled, so let's just do a quick timeout here since the IRQ will not fire ...
391 */
Mike Frysingerd0fd9372008-08-20 14:09:03 -0700392 while (bfin_read_RTC_ISTAT() & RTC_ISTAT_WRITE_PENDING)
393 if (time_after(jiffies, timeout))
394 break;
Mike Frysingerfe2e1cf2008-08-20 14:09:01 -0700395 bfin_rtc_reset(dev, RTC_ISTAT_WRITE_COMPLETE);
396 bfin_write_RTC_SWCNT(0);
397
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700398 return 0;
399
Mike Frysinger99800602009-06-30 11:41:43 -0700400err_reg:
401 rtc_device_unregister(rtc->rtc_dev);
402err:
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700403 kfree(rtc);
404 return ret;
405}
406
407static int __devexit bfin_rtc_remove(struct platform_device *pdev)
408{
409 struct bfin_rtc *rtc = platform_get_drvdata(pdev);
Mike Frysingerfe2e1cf2008-08-20 14:09:01 -0700410 struct device *dev = &pdev->dev;
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700411
Mike Frysingerfe2e1cf2008-08-20 14:09:01 -0700412 bfin_rtc_reset(dev, 0);
413 free_irq(IRQ_RTC, dev);
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700414 rtc_device_unregister(rtc->rtc_dev);
415 platform_set_drvdata(pdev, NULL);
416 kfree(rtc);
417
418 return 0;
419}
420
Sonic Zhang5aeb7762008-08-05 13:01:17 -0700421#ifdef CONFIG_PM
422static int bfin_rtc_suspend(struct platform_device *pdev, pm_message_t state)
423{
Mike Frysinger140fab12008-08-05 13:01:20 -0700424 if (device_may_wakeup(&pdev->dev)) {
Mike Frysinger813006f2008-08-05 13:01:18 -0700425 enable_irq_wake(IRQ_RTC);
Mike Frysinger140fab12008-08-05 13:01:20 -0700426 bfin_rtc_sync_pending(&pdev->dev);
427 } else
Mike Frysinger605eb8b2008-08-05 13:01:18 -0700428 bfin_rtc_int_clear(-1);
Mike Frysinger813006f2008-08-05 13:01:18 -0700429
Sonic Zhang5aeb7762008-08-05 13:01:17 -0700430 return 0;
431}
432
433static int bfin_rtc_resume(struct platform_device *pdev)
434{
Mike Frysinger813006f2008-08-05 13:01:18 -0700435 if (device_may_wakeup(&pdev->dev))
436 disable_irq_wake(IRQ_RTC);
437 else
438 bfin_write_RTC_ISTAT(-1);
439
Sonic Zhang5aeb7762008-08-05 13:01:17 -0700440 return 0;
441}
Mike Frysinger813006f2008-08-05 13:01:18 -0700442#else
443# define bfin_rtc_suspend NULL
444# define bfin_rtc_resume NULL
Sonic Zhang5aeb7762008-08-05 13:01:17 -0700445#endif
446
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700447static struct platform_driver bfin_rtc_driver = {
448 .driver = {
449 .name = "rtc-bfin",
450 .owner = THIS_MODULE,
451 },
452 .probe = bfin_rtc_probe,
453 .remove = __devexit_p(bfin_rtc_remove),
Sonic Zhang5aeb7762008-08-05 13:01:17 -0700454 .suspend = bfin_rtc_suspend,
455 .resume = bfin_rtc_resume,
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700456};
457
458static int __init bfin_rtc_init(void)
459{
Wu, Bryan8cc75c92007-05-06 14:50:32 -0700460 return platform_driver_register(&bfin_rtc_driver);
461}
462
463static void __exit bfin_rtc_exit(void)
464{
465 platform_driver_unregister(&bfin_rtc_driver);
466}
467
468module_init(bfin_rtc_init);
469module_exit(bfin_rtc_exit);
470
471MODULE_DESCRIPTION("Blackfin On-Chip Real Time Clock Driver");
472MODULE_AUTHOR("Mike Frysinger <vapier@gentoo.org>");
473MODULE_LICENSE("GPL");
Kay Sieversad28a072008-04-10 21:29:25 -0700474MODULE_ALIAS("platform:rtc-bfin");