Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Blackfin On-Chip Real Time Clock Driver |
Mike Frysinger | 9980060 | 2009-06-30 11:41:43 -0700 | [diff] [blame] | 3 | * Supports BF51x/BF52x/BF53[123]/BF53[467]/BF54x |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 4 | * |
Mike Frysinger | d7c7ef9 | 2010-10-27 15:33:04 -0700 | [diff] [blame] | 5 | * Copyright 2004-2010 Analog Devices Inc. |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 6 | * |
| 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, |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 23 | * would have to sleep for up to 1 second every time we wanted to write a |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 24 | * register), we only check the write pending status before we start to issue |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 25 | * a new write. We bank on the idea that it doesn't matter when the sync |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 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 Frysinger | 26cb8bb | 2008-08-05 13:01:21 -0700 | [diff] [blame] | 35 | /* 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, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 44 | #include <linux/bcd.h> |
Mike Frysinger | 095b9d5 | 2008-02-06 01:38:51 -0800 | [diff] [blame] | 45 | #include <linux/completion.h> |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 46 | #include <linux/delay.h> |
Mike Frysinger | 095b9d5 | 2008-02-06 01:38:51 -0800 | [diff] [blame] | 47 | #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> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 54 | #include <linux/slab.h> |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 55 | |
| 56 | #include <asm/blackfin.h> |
| 57 | |
Mike Frysinger | 5438de4 | 2008-02-06 01:38:49 -0800 | [diff] [blame] | 58 | #define dev_dbg_stamp(dev) dev_dbg(dev, "%s:%i: here i am\n", __func__, __LINE__) |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 59 | |
| 60 | struct bfin_rtc { |
| 61 | struct rtc_device *rtc_dev; |
| 62 | struct rtc_time rtc_alarm; |
Mike Frysinger | 095b9d5 | 2008-02-06 01:38:51 -0800 | [diff] [blame] | 63 | u16 rtc_wrote_regs; |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 64 | }; |
| 65 | |
| 66 | /* Bit values for the ISTAT / ICTL registers */ |
| 67 | #define RTC_ISTAT_WRITE_COMPLETE 0x8000 |
| 68 | #define RTC_ISTAT_WRITE_PENDING 0x4000 |
| 69 | #define RTC_ISTAT_ALARM_DAY 0x0040 |
| 70 | #define RTC_ISTAT_24HR 0x0020 |
| 71 | #define RTC_ISTAT_HOUR 0x0010 |
| 72 | #define RTC_ISTAT_MIN 0x0008 |
| 73 | #define RTC_ISTAT_SEC 0x0004 |
| 74 | #define RTC_ISTAT_ALARM 0x0002 |
| 75 | #define RTC_ISTAT_STOPWATCH 0x0001 |
| 76 | |
| 77 | /* Shift values for RTC_STAT register */ |
| 78 | #define DAY_BITS_OFF 17 |
| 79 | #define HOUR_BITS_OFF 12 |
| 80 | #define MIN_BITS_OFF 6 |
| 81 | #define SEC_BITS_OFF 0 |
| 82 | |
| 83 | /* Some helper functions to convert between the common RTC notion of time |
Mike Frysinger | 5c23634 | 2008-02-06 01:38:47 -0800 | [diff] [blame] | 84 | * and the internal Blackfin notion that is encoded in 32bits. |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 85 | */ |
| 86 | static inline u32 rtc_time_to_bfin(unsigned long now) |
| 87 | { |
| 88 | u32 sec = (now % 60); |
| 89 | u32 min = (now % (60 * 60)) / 60; |
| 90 | u32 hour = (now % (60 * 60 * 24)) / (60 * 60); |
| 91 | u32 days = (now / (60 * 60 * 24)); |
| 92 | return (sec << SEC_BITS_OFF) + |
| 93 | (min << MIN_BITS_OFF) + |
| 94 | (hour << HOUR_BITS_OFF) + |
| 95 | (days << DAY_BITS_OFF); |
| 96 | } |
| 97 | static inline unsigned long rtc_bfin_to_time(u32 rtc_bfin) |
| 98 | { |
| 99 | return (((rtc_bfin >> SEC_BITS_OFF) & 0x003F)) + |
| 100 | (((rtc_bfin >> MIN_BITS_OFF) & 0x003F) * 60) + |
| 101 | (((rtc_bfin >> HOUR_BITS_OFF) & 0x001F) * 60 * 60) + |
| 102 | (((rtc_bfin >> DAY_BITS_OFF) & 0x7FFF) * 60 * 60 * 24); |
| 103 | } |
| 104 | static inline void rtc_bfin_to_tm(u32 rtc_bfin, struct rtc_time *tm) |
| 105 | { |
| 106 | rtc_time_to_tm(rtc_bfin_to_time(rtc_bfin), tm); |
| 107 | } |
| 108 | |
Mike Frysinger | 095b9d5 | 2008-02-06 01:38:51 -0800 | [diff] [blame] | 109 | /** |
| 110 | * bfin_rtc_sync_pending - make sure pending writes have complete |
| 111 | * |
| 112 | * Wait for the previous write to a RTC register to complete. |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 113 | * Unfortunately, we can't sleep here as that introduces a race condition when |
| 114 | * turning on interrupt events. Consider this: |
| 115 | * - process sets alarm |
| 116 | * - process enables alarm |
| 117 | * - process sleeps while waiting for rtc write to sync |
| 118 | * - interrupt fires while process is sleeping |
| 119 | * - interrupt acks the event by writing to ISTAT |
| 120 | * - interrupt sets the WRITE PENDING bit |
| 121 | * - interrupt handler finishes |
| 122 | * - process wakes up, sees WRITE PENDING bit set, goes to sleep |
| 123 | * - interrupt fires while process is sleeping |
| 124 | * If anyone can point out the obvious solution here, i'm listening :). This |
| 125 | * shouldn't be an issue on an SMP or preempt system as this function should |
| 126 | * only be called with the rtc lock held. |
Mike Frysinger | 5c23634 | 2008-02-06 01:38:47 -0800 | [diff] [blame] | 127 | * |
| 128 | * Other options: |
| 129 | * - disable PREN so the sync happens at 32.768kHZ ... but this changes the |
| 130 | * inc rate for all RTC registers from 1HZ to 32.768kHZ ... |
| 131 | * - use the write complete IRQ |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 132 | */ |
Mike Frysinger | 095b9d5 | 2008-02-06 01:38:51 -0800 | [diff] [blame] | 133 | /* |
| 134 | static void bfin_rtc_sync_pending_polled(void) |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 135 | { |
Mike Frysinger | 095b9d5 | 2008-02-06 01:38:51 -0800 | [diff] [blame] | 136 | while (!(bfin_read_RTC_ISTAT() & RTC_ISTAT_WRITE_COMPLETE)) |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 137 | if (!(bfin_read_RTC_ISTAT() & RTC_ISTAT_WRITE_PENDING)) |
| 138 | break; |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 139 | bfin_write_RTC_ISTAT(RTC_ISTAT_WRITE_COMPLETE); |
| 140 | } |
Mike Frysinger | 095b9d5 | 2008-02-06 01:38:51 -0800 | [diff] [blame] | 141 | */ |
| 142 | static DECLARE_COMPLETION(bfin_write_complete); |
| 143 | static void bfin_rtc_sync_pending(struct device *dev) |
| 144 | { |
| 145 | dev_dbg_stamp(dev); |
| 146 | while (bfin_read_RTC_ISTAT() & RTC_ISTAT_WRITE_PENDING) |
| 147 | wait_for_completion_timeout(&bfin_write_complete, HZ * 5); |
| 148 | dev_dbg_stamp(dev); |
| 149 | } |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 150 | |
Mike Frysinger | 095b9d5 | 2008-02-06 01:38:51 -0800 | [diff] [blame] | 151 | /** |
| 152 | * bfin_rtc_reset - set RTC to sane/known state |
| 153 | * |
| 154 | * Initialize the RTC. Enable pre-scaler to scale RTC clock |
| 155 | * to 1Hz and clear interrupt/status registers. |
| 156 | */ |
Mike Frysinger | 3b128fe | 2008-08-05 13:01:19 -0700 | [diff] [blame] | 157 | static void bfin_rtc_reset(struct device *dev, u16 rtc_ictl) |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 158 | { |
Mike Frysinger | 5438de4 | 2008-02-06 01:38:49 -0800 | [diff] [blame] | 159 | struct bfin_rtc *rtc = dev_get_drvdata(dev); |
Mike Frysinger | 095b9d5 | 2008-02-06 01:38:51 -0800 | [diff] [blame] | 160 | dev_dbg_stamp(dev); |
| 161 | bfin_rtc_sync_pending(dev); |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 162 | bfin_write_RTC_PREN(0x1); |
Mike Frysinger | 3b128fe | 2008-08-05 13:01:19 -0700 | [diff] [blame] | 163 | bfin_write_RTC_ICTL(rtc_ictl); |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 164 | bfin_write_RTC_ALARM(0); |
| 165 | bfin_write_RTC_ISTAT(0xFFFF); |
Mike Frysinger | 095b9d5 | 2008-02-06 01:38:51 -0800 | [diff] [blame] | 166 | rtc->rtc_wrote_regs = 0; |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 167 | } |
| 168 | |
Mike Frysinger | 095b9d5 | 2008-02-06 01:38:51 -0800 | [diff] [blame] | 169 | /** |
| 170 | * bfin_rtc_interrupt - handle interrupt from RTC |
| 171 | * |
| 172 | * Since we handle all RTC events here, we have to make sure the requested |
| 173 | * interrupt is enabled (in RTC_ICTL) as the event status register (RTC_ISTAT) |
| 174 | * always gets updated regardless of the interrupt being enabled. So when one |
| 175 | * even we care about (e.g. stopwatch) goes off, we don't want to turn around |
| 176 | * and say that other events have happened as well (e.g. second). We do not |
| 177 | * have to worry about pending writes to the RTC_ICTL register as interrupts |
| 178 | * only fire if they are enabled in the RTC_ICTL register. |
| 179 | */ |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 180 | static irqreturn_t bfin_rtc_interrupt(int irq, void *dev_id) |
| 181 | { |
Mike Frysinger | d7827d8 | 2008-02-06 01:38:47 -0800 | [diff] [blame] | 182 | struct device *dev = dev_id; |
| 183 | struct bfin_rtc *rtc = dev_get_drvdata(dev); |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 184 | unsigned long events = 0; |
Mike Frysinger | 095b9d5 | 2008-02-06 01:38:51 -0800 | [diff] [blame] | 185 | bool write_complete = false; |
Mike Frysinger | 286f9f9 | 2010-10-27 15:33:03 -0700 | [diff] [blame] | 186 | u16 rtc_istat, rtc_istat_clear, rtc_ictl, bits; |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 187 | |
Mike Frysinger | 5438de4 | 2008-02-06 01:38:49 -0800 | [diff] [blame] | 188 | dev_dbg_stamp(dev); |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 189 | |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 190 | rtc_istat = bfin_read_RTC_ISTAT(); |
Mike Frysinger | 095b9d5 | 2008-02-06 01:38:51 -0800 | [diff] [blame] | 191 | rtc_ictl = bfin_read_RTC_ICTL(); |
Mike Frysinger | 286f9f9 | 2010-10-27 15:33:03 -0700 | [diff] [blame] | 192 | rtc_istat_clear = 0; |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 193 | |
Mike Frysinger | 286f9f9 | 2010-10-27 15:33:03 -0700 | [diff] [blame] | 194 | bits = RTC_ISTAT_WRITE_COMPLETE; |
| 195 | if (rtc_istat & bits) { |
| 196 | rtc_istat_clear |= bits; |
Mike Frysinger | 095b9d5 | 2008-02-06 01:38:51 -0800 | [diff] [blame] | 197 | write_complete = true; |
| 198 | complete(&bfin_write_complete); |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 199 | } |
| 200 | |
Mike Frysinger | 286f9f9 | 2010-10-27 15:33:03 -0700 | [diff] [blame] | 201 | bits = (RTC_ISTAT_ALARM | RTC_ISTAT_ALARM_DAY); |
| 202 | if (rtc_ictl & bits) { |
| 203 | if (rtc_istat & bits) { |
| 204 | rtc_istat_clear |= bits; |
Mike Frysinger | 095b9d5 | 2008-02-06 01:38:51 -0800 | [diff] [blame] | 205 | events |= RTC_AF | RTC_IRQF; |
| 206 | } |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 207 | } |
| 208 | |
Mike Frysinger | 286f9f9 | 2010-10-27 15:33:03 -0700 | [diff] [blame] | 209 | bits = RTC_ISTAT_SEC; |
| 210 | if (rtc_ictl & bits) { |
| 211 | if (rtc_istat & bits) { |
| 212 | rtc_istat_clear |= bits; |
Mike Frysinger | 095b9d5 | 2008-02-06 01:38:51 -0800 | [diff] [blame] | 213 | events |= RTC_UF | RTC_IRQF; |
| 214 | } |
| 215 | } |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 216 | |
Mike Frysinger | 095b9d5 | 2008-02-06 01:38:51 -0800 | [diff] [blame] | 217 | if (events) |
| 218 | rtc_update_irq(rtc->rtc_dev, 1, events); |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 219 | |
Mike Frysinger | 286f9f9 | 2010-10-27 15:33:03 -0700 | [diff] [blame] | 220 | if (write_complete || events) { |
| 221 | bfin_write_RTC_ISTAT(rtc_istat_clear); |
Mike Frysinger | 095b9d5 | 2008-02-06 01:38:51 -0800 | [diff] [blame] | 222 | return IRQ_HANDLED; |
Mike Frysinger | 286f9f9 | 2010-10-27 15:33:03 -0700 | [diff] [blame] | 223 | } else |
Mike Frysinger | 095b9d5 | 2008-02-06 01:38:51 -0800 | [diff] [blame] | 224 | return IRQ_NONE; |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 225 | } |
| 226 | |
Mike Frysinger | 605eb8b | 2008-08-05 13:01:18 -0700 | [diff] [blame] | 227 | static void bfin_rtc_int_set(u16 rtc_int) |
Mike Frysinger | 095b9d5 | 2008-02-06 01:38:51 -0800 | [diff] [blame] | 228 | { |
| 229 | bfin_write_RTC_ISTAT(rtc_int); |
| 230 | bfin_write_RTC_ICTL(bfin_read_RTC_ICTL() | rtc_int); |
| 231 | } |
Mike Frysinger | 605eb8b | 2008-08-05 13:01:18 -0700 | [diff] [blame] | 232 | static void bfin_rtc_int_clear(u16 rtc_int) |
Mike Frysinger | 095b9d5 | 2008-02-06 01:38:51 -0800 | [diff] [blame] | 233 | { |
| 234 | bfin_write_RTC_ICTL(bfin_read_RTC_ICTL() & rtc_int); |
| 235 | } |
| 236 | static void bfin_rtc_int_set_alarm(struct bfin_rtc *rtc) |
| 237 | { |
| 238 | /* Blackfin has different bits for whether the alarm is |
| 239 | * more than 24 hours away. |
| 240 | */ |
Mike Frysinger | 605eb8b | 2008-08-05 13:01:18 -0700 | [diff] [blame] | 241 | bfin_rtc_int_set(rtc->rtc_alarm.tm_yday == -1 ? RTC_ISTAT_ALARM : RTC_ISTAT_ALARM_DAY); |
Mike Frysinger | 095b9d5 | 2008-02-06 01:38:51 -0800 | [diff] [blame] | 242 | } |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 243 | |
John Stultz | 16380c1 | 2011-02-02 17:02:41 -0800 | [diff] [blame] | 244 | static int bfin_rtc_alarm_irq_enable(struct device *dev, unsigned int enabled) |
| 245 | { |
| 246 | struct bfin_rtc *rtc = dev_get_drvdata(dev); |
| 247 | |
| 248 | dev_dbg_stamp(dev); |
| 249 | if (enabled) |
| 250 | bfin_rtc_int_set_alarm(rtc); |
| 251 | else |
| 252 | bfin_rtc_int_clear(~(RTC_ISTAT_ALARM | RTC_ISTAT_ALARM_DAY)); |
Mike Frysinger | 8c122b9 | 2011-03-18 04:26:24 -0400 | [diff] [blame] | 253 | |
| 254 | return 0; |
John Stultz | 16380c1 | 2011-02-02 17:02:41 -0800 | [diff] [blame] | 255 | } |
| 256 | |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 257 | static int bfin_rtc_read_time(struct device *dev, struct rtc_time *tm) |
| 258 | { |
| 259 | struct bfin_rtc *rtc = dev_get_drvdata(dev); |
| 260 | |
Mike Frysinger | 5438de4 | 2008-02-06 01:38:49 -0800 | [diff] [blame] | 261 | dev_dbg_stamp(dev); |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 262 | |
Mike Frysinger | 095b9d5 | 2008-02-06 01:38:51 -0800 | [diff] [blame] | 263 | if (rtc->rtc_wrote_regs & 0x1) |
| 264 | bfin_rtc_sync_pending(dev); |
| 265 | |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 266 | rtc_bfin_to_tm(bfin_read_RTC_STAT(), tm); |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 267 | |
| 268 | return 0; |
| 269 | } |
| 270 | |
| 271 | static int bfin_rtc_set_time(struct device *dev, struct rtc_time *tm) |
| 272 | { |
| 273 | struct bfin_rtc *rtc = dev_get_drvdata(dev); |
| 274 | int ret; |
| 275 | unsigned long now; |
| 276 | |
Mike Frysinger | 5438de4 | 2008-02-06 01:38:49 -0800 | [diff] [blame] | 277 | dev_dbg_stamp(dev); |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 278 | |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 279 | ret = rtc_tm_to_time(tm, &now); |
| 280 | if (ret == 0) { |
Mike Frysinger | 095b9d5 | 2008-02-06 01:38:51 -0800 | [diff] [blame] | 281 | if (rtc->rtc_wrote_regs & 0x1) |
| 282 | bfin_rtc_sync_pending(dev); |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 283 | bfin_write_RTC_STAT(rtc_time_to_bfin(now)); |
Mike Frysinger | 095b9d5 | 2008-02-06 01:38:51 -0800 | [diff] [blame] | 284 | rtc->rtc_wrote_regs = 0x1; |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 285 | } |
| 286 | |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 287 | return ret; |
| 288 | } |
| 289 | |
| 290 | static int bfin_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm) |
| 291 | { |
| 292 | struct bfin_rtc *rtc = dev_get_drvdata(dev); |
Mike Frysinger | 5438de4 | 2008-02-06 01:38:49 -0800 | [diff] [blame] | 293 | dev_dbg_stamp(dev); |
Mike Frysinger | 48c1a56 | 2008-02-06 01:38:50 -0800 | [diff] [blame] | 294 | alrm->time = rtc->rtc_alarm; |
Mike Frysinger | 095b9d5 | 2008-02-06 01:38:51 -0800 | [diff] [blame] | 295 | bfin_rtc_sync_pending(dev); |
Mike Frysinger | 68db304 | 2008-02-06 01:38:49 -0800 | [diff] [blame] | 296 | alrm->enabled = !!(bfin_read_RTC_ICTL() & (RTC_ISTAT_ALARM | RTC_ISTAT_ALARM_DAY)); |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 297 | return 0; |
| 298 | } |
| 299 | |
| 300 | static int bfin_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alrm) |
| 301 | { |
| 302 | struct bfin_rtc *rtc = dev_get_drvdata(dev); |
Mike Frysinger | 095b9d5 | 2008-02-06 01:38:51 -0800 | [diff] [blame] | 303 | unsigned long rtc_alarm; |
| 304 | |
Mike Frysinger | 5438de4 | 2008-02-06 01:38:49 -0800 | [diff] [blame] | 305 | dev_dbg_stamp(dev); |
Mike Frysinger | 095b9d5 | 2008-02-06 01:38:51 -0800 | [diff] [blame] | 306 | |
| 307 | if (rtc_tm_to_time(&alrm->time, &rtc_alarm)) |
| 308 | return -EINVAL; |
| 309 | |
Mike Frysinger | 68db304 | 2008-02-06 01:38:49 -0800 | [diff] [blame] | 310 | rtc->rtc_alarm = alrm->time; |
Mike Frysinger | 095b9d5 | 2008-02-06 01:38:51 -0800 | [diff] [blame] | 311 | |
| 312 | bfin_rtc_sync_pending(dev); |
| 313 | bfin_write_RTC_ALARM(rtc_time_to_bfin(rtc_alarm)); |
| 314 | if (alrm->enabled) |
| 315 | bfin_rtc_int_set_alarm(rtc); |
| 316 | |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 317 | return 0; |
| 318 | } |
| 319 | |
| 320 | static int bfin_rtc_proc(struct device *dev, struct seq_file *seq) |
| 321 | { |
Mike Frysinger | 6406116 | 2008-02-06 01:38:48 -0800 | [diff] [blame] | 322 | #define yesno(x) ((x) ? "yes" : "no") |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 323 | u16 ictl = bfin_read_RTC_ICTL(); |
Mike Frysinger | 5438de4 | 2008-02-06 01:38:49 -0800 | [diff] [blame] | 324 | dev_dbg_stamp(dev); |
Mike Frysinger | 6406116 | 2008-02-06 01:38:48 -0800 | [diff] [blame] | 325 | seq_printf(seq, |
| 326 | "alarm_IRQ\t: %s\n" |
| 327 | "wkalarm_IRQ\t: %s\n" |
Mike Frysinger | 26cb8bb | 2008-08-05 13:01:21 -0700 | [diff] [blame] | 328 | "seconds_IRQ\t: %s\n", |
Mike Frysinger | 6406116 | 2008-02-06 01:38:48 -0800 | [diff] [blame] | 329 | yesno(ictl & RTC_ISTAT_ALARM), |
| 330 | yesno(ictl & RTC_ISTAT_ALARM_DAY), |
Mike Frysinger | 26cb8bb | 2008-08-05 13:01:21 -0700 | [diff] [blame] | 331 | yesno(ictl & RTC_ISTAT_SEC)); |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 332 | return 0; |
Mike Frysinger | 6406116 | 2008-02-06 01:38:48 -0800 | [diff] [blame] | 333 | #undef yesno |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 334 | } |
| 335 | |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 336 | static struct rtc_class_ops bfin_rtc_ops = { |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 337 | .read_time = bfin_rtc_read_time, |
| 338 | .set_time = bfin_rtc_set_time, |
| 339 | .read_alarm = bfin_rtc_read_alarm, |
| 340 | .set_alarm = bfin_rtc_set_alarm, |
| 341 | .proc = bfin_rtc_proc, |
John Stultz | 16380c1 | 2011-02-02 17:02:41 -0800 | [diff] [blame] | 342 | .alarm_irq_enable = bfin_rtc_alarm_irq_enable, |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 343 | }; |
| 344 | |
Greg Kroah-Hartman | 5a167f4 | 2012-12-21 13:09:38 -0800 | [diff] [blame] | 345 | static int bfin_rtc_probe(struct platform_device *pdev) |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 346 | { |
| 347 | struct bfin_rtc *rtc; |
Mike Frysinger | fe2e1cf | 2008-08-20 14:09:01 -0700 | [diff] [blame] | 348 | struct device *dev = &pdev->dev; |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 349 | int ret = 0; |
Mike Frysinger | 9980060 | 2009-06-30 11:41:43 -0700 | [diff] [blame] | 350 | unsigned long timeout = jiffies + HZ; |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 351 | |
Mike Frysinger | fe2e1cf | 2008-08-20 14:09:01 -0700 | [diff] [blame] | 352 | dev_dbg_stamp(dev); |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 353 | |
Mike Frysinger | fe2e1cf | 2008-08-20 14:09:01 -0700 | [diff] [blame] | 354 | /* Allocate memory for our RTC struct */ |
Jingoo Han | 87e7d52 | 2013-04-29 16:20:35 -0700 | [diff] [blame] | 355 | rtc = devm_kzalloc(dev, sizeof(*rtc), GFP_KERNEL); |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 356 | if (unlikely(!rtc)) |
| 357 | return -ENOMEM; |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 358 | platform_set_drvdata(pdev, rtc); |
Mike Frysinger | 8c9166f | 2008-08-20 14:09:02 -0700 | [diff] [blame] | 359 | device_init_wakeup(dev, 1); |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 360 | |
Mike Frysinger | 9980060 | 2009-06-30 11:41:43 -0700 | [diff] [blame] | 361 | /* Register our RTC with the RTC framework */ |
Jingoo Han | 87e7d52 | 2013-04-29 16:20:35 -0700 | [diff] [blame] | 362 | rtc->rtc_dev = devm_rtc_device_register(dev, pdev->name, &bfin_rtc_ops, |
Mike Frysinger | 9980060 | 2009-06-30 11:41:43 -0700 | [diff] [blame] | 363 | THIS_MODULE); |
| 364 | if (unlikely(IS_ERR(rtc->rtc_dev))) { |
| 365 | ret = PTR_ERR(rtc->rtc_dev); |
| 366 | goto err; |
| 367 | } |
| 368 | |
Mike Frysinger | fe2e1cf | 2008-08-20 14:09:01 -0700 | [diff] [blame] | 369 | /* Grab the IRQ and init the hardware */ |
Jingoo Han | 87e7d52 | 2013-04-29 16:20:35 -0700 | [diff] [blame] | 370 | ret = devm_request_irq(dev, IRQ_RTC, bfin_rtc_interrupt, 0, |
| 371 | pdev->name, dev); |
Mike Frysinger | fe2e1cf | 2008-08-20 14:09:01 -0700 | [diff] [blame] | 372 | if (unlikely(ret)) |
Jingoo Han | 87e7d52 | 2013-04-29 16:20:35 -0700 | [diff] [blame] | 373 | goto err; |
Mike Frysinger | d0fd937 | 2008-08-20 14:09:03 -0700 | [diff] [blame] | 374 | /* sometimes the bootloader touched things, but the write complete was not |
| 375 | * enabled, so let's just do a quick timeout here since the IRQ will not fire ... |
| 376 | */ |
Mike Frysinger | d0fd937 | 2008-08-20 14:09:03 -0700 | [diff] [blame] | 377 | while (bfin_read_RTC_ISTAT() & RTC_ISTAT_WRITE_PENDING) |
| 378 | if (time_after(jiffies, timeout)) |
| 379 | break; |
Mike Frysinger | fe2e1cf | 2008-08-20 14:09:01 -0700 | [diff] [blame] | 380 | bfin_rtc_reset(dev, RTC_ISTAT_WRITE_COMPLETE); |
| 381 | bfin_write_RTC_SWCNT(0); |
| 382 | |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 383 | return 0; |
| 384 | |
Mike Frysinger | 9980060 | 2009-06-30 11:41:43 -0700 | [diff] [blame] | 385 | err: |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 386 | return ret; |
| 387 | } |
| 388 | |
Greg Kroah-Hartman | 5a167f4 | 2012-12-21 13:09:38 -0800 | [diff] [blame] | 389 | static int bfin_rtc_remove(struct platform_device *pdev) |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 390 | { |
Mike Frysinger | fe2e1cf | 2008-08-20 14:09:01 -0700 | [diff] [blame] | 391 | struct device *dev = &pdev->dev; |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 392 | |
Mike Frysinger | fe2e1cf | 2008-08-20 14:09:01 -0700 | [diff] [blame] | 393 | bfin_rtc_reset(dev, 0); |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 394 | |
| 395 | return 0; |
| 396 | } |
| 397 | |
Jingoo Han | b4df8f6 | 2013-04-29 16:20:59 -0700 | [diff] [blame] | 398 | #ifdef CONFIG_PM_SLEEP |
| 399 | static int bfin_rtc_suspend(struct device *dev) |
Sonic Zhang | 5aeb776 | 2008-08-05 13:01:17 -0700 | [diff] [blame] | 400 | { |
Mike Frysinger | d7c7ef9 | 2010-10-27 15:33:04 -0700 | [diff] [blame] | 401 | dev_dbg_stamp(dev); |
| 402 | |
| 403 | if (device_may_wakeup(dev)) { |
Mike Frysinger | 813006f | 2008-08-05 13:01:18 -0700 | [diff] [blame] | 404 | enable_irq_wake(IRQ_RTC); |
Mike Frysinger | d7c7ef9 | 2010-10-27 15:33:04 -0700 | [diff] [blame] | 405 | bfin_rtc_sync_pending(dev); |
Mike Frysinger | 140fab1 | 2008-08-05 13:01:20 -0700 | [diff] [blame] | 406 | } else |
Mike Frysinger | 110b7e9 | 2010-09-09 16:37:27 -0700 | [diff] [blame] | 407 | bfin_rtc_int_clear(0); |
Mike Frysinger | 813006f | 2008-08-05 13:01:18 -0700 | [diff] [blame] | 408 | |
Sonic Zhang | 5aeb776 | 2008-08-05 13:01:17 -0700 | [diff] [blame] | 409 | return 0; |
| 410 | } |
| 411 | |
Jingoo Han | b4df8f6 | 2013-04-29 16:20:59 -0700 | [diff] [blame] | 412 | static int bfin_rtc_resume(struct device *dev) |
Sonic Zhang | 5aeb776 | 2008-08-05 13:01:17 -0700 | [diff] [blame] | 413 | { |
Mike Frysinger | d7c7ef9 | 2010-10-27 15:33:04 -0700 | [diff] [blame] | 414 | dev_dbg_stamp(dev); |
| 415 | |
| 416 | if (device_may_wakeup(dev)) |
Mike Frysinger | 813006f | 2008-08-05 13:01:18 -0700 | [diff] [blame] | 417 | disable_irq_wake(IRQ_RTC); |
Mike Frysinger | b6de860 | 2010-09-09 16:37:29 -0700 | [diff] [blame] | 418 | |
| 419 | /* |
| 420 | * Since only some of the RTC bits are maintained externally in the |
| 421 | * Vbat domain, we need to wait for the RTC MMRs to be synced into |
| 422 | * the core after waking up. This happens every RTC 1HZ. Once that |
| 423 | * has happened, we can go ahead and re-enable the important write |
| 424 | * complete interrupt event. |
| 425 | */ |
| 426 | while (!(bfin_read_RTC_ISTAT() & RTC_ISTAT_SEC)) |
| 427 | continue; |
| 428 | bfin_rtc_int_set(RTC_ISTAT_WRITE_COMPLETE); |
Mike Frysinger | 813006f | 2008-08-05 13:01:18 -0700 | [diff] [blame] | 429 | |
Sonic Zhang | 5aeb776 | 2008-08-05 13:01:17 -0700 | [diff] [blame] | 430 | return 0; |
| 431 | } |
| 432 | #endif |
| 433 | |
Jingoo Han | b4df8f6 | 2013-04-29 16:20:59 -0700 | [diff] [blame] | 434 | static SIMPLE_DEV_PM_OPS(bfin_rtc_pm_ops, bfin_rtc_suspend, bfin_rtc_resume); |
| 435 | |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 436 | static struct platform_driver bfin_rtc_driver = { |
| 437 | .driver = { |
| 438 | .name = "rtc-bfin", |
| 439 | .owner = THIS_MODULE, |
Jingoo Han | b4df8f6 | 2013-04-29 16:20:59 -0700 | [diff] [blame] | 440 | .pm = &bfin_rtc_pm_ops, |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 441 | }, |
| 442 | .probe = bfin_rtc_probe, |
Greg Kroah-Hartman | 5a167f4 | 2012-12-21 13:09:38 -0800 | [diff] [blame] | 443 | .remove = bfin_rtc_remove, |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 444 | }; |
| 445 | |
Axel Lin | 0c4eae6 | 2012-01-10 15:10:48 -0800 | [diff] [blame] | 446 | module_platform_driver(bfin_rtc_driver); |
Wu, Bryan | 8cc75c9 | 2007-05-06 14:50:32 -0700 | [diff] [blame] | 447 | |
| 448 | MODULE_DESCRIPTION("Blackfin On-Chip Real Time Clock Driver"); |
| 449 | MODULE_AUTHOR("Mike Frysinger <vapier@gentoo.org>"); |
| 450 | MODULE_LICENSE("GPL"); |
Kay Sievers | ad28a07 | 2008-04-10 21:29:25 -0700 | [diff] [blame] | 451 | MODULE_ALIAS("platform:rtc-bfin"); |