blob: 166fc60d8b551f558bd2b9cb0930b419ca175db8 [file] [log] [blame]
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08001/*
2 * RTC subsystem, interface functions
3 *
4 * Copyright (C) 2005 Tower Technologies
5 * Author: Alessandro Zummo <a.zummo@towertech.it>
6 *
7 * based on arch/arm/common/rtctime.c
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12*/
13
14#include <linux/rtc.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040015#include <linux/sched.h>
Paul Gortmaker21138522011-05-27 09:57:25 -040016#include <linux/module.h>
David Brownell97144c62007-10-16 01:28:16 -070017#include <linux/log2.h>
John Stultz6610e082010-09-23 15:07:34 -070018#include <linux/workqueue.h>
19
John Stultzaa0be0f2011-01-20 15:26:12 -080020static int rtc_timer_enqueue(struct rtc_device *rtc, struct rtc_timer *timer);
21static void rtc_timer_remove(struct rtc_device *rtc, struct rtc_timer *timer);
22
John Stultz6610e082010-09-23 15:07:34 -070023static int __rtc_read_time(struct rtc_device *rtc, struct rtc_time *tm)
24{
25 int err;
26 if (!rtc->ops)
27 err = -ENODEV;
28 else if (!rtc->ops->read_time)
29 err = -EINVAL;
30 else {
31 memset(tm, 0, sizeof(struct rtc_time));
32 err = rtc->ops->read_time(rtc->dev.parent, tm);
Hyogi Gim16682c862014-12-10 15:52:27 -080033 if (err < 0) {
Aaro Koskinend0bddb52015-04-16 12:45:51 -070034 dev_dbg(&rtc->dev, "read_time: fail to read: %d\n",
35 err);
Hyogi Gim16682c862014-12-10 15:52:27 -080036 return err;
37 }
38
39 err = rtc_valid_tm(tm);
40 if (err < 0)
Aaro Koskinend0bddb52015-04-16 12:45:51 -070041 dev_dbg(&rtc->dev, "read_time: rtc_time isn't valid\n");
John Stultz6610e082010-09-23 15:07:34 -070042 }
43 return err;
44}
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080045
David Brownellab6a2d72007-05-08 00:33:30 -070046int rtc_read_time(struct rtc_device *rtc, struct rtc_time *tm)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080047{
48 int err;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080049
50 err = mutex_lock_interruptible(&rtc->ops_lock);
51 if (err)
David Brownellb68bb262008-07-29 22:33:30 -070052 return err;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080053
John Stultz6610e082010-09-23 15:07:34 -070054 err = __rtc_read_time(rtc, tm);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080055 mutex_unlock(&rtc->ops_lock);
56 return err;
57}
58EXPORT_SYMBOL_GPL(rtc_read_time);
59
David Brownellab6a2d72007-05-08 00:33:30 -070060int rtc_set_time(struct rtc_device *rtc, struct rtc_time *tm)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080061{
62 int err;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080063
64 err = rtc_valid_tm(tm);
65 if (err != 0)
66 return err;
67
68 err = mutex_lock_interruptible(&rtc->ops_lock);
69 if (err)
David Brownellb68bb262008-07-29 22:33:30 -070070 return err;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080071
72 if (!rtc->ops)
73 err = -ENODEV;
Alessandro Zummobbccf832009-01-06 14:42:21 -080074 else if (rtc->ops->set_time)
David Brownellcd966202007-05-08 00:33:40 -070075 err = rtc->ops->set_time(rtc->dev.parent, tm);
Xunlei Pang8e4ff1a2015-04-01 20:34:27 -070076 else if (rtc->ops->set_mmss64) {
77 time64_t secs64 = rtc_tm_to_time64(tm);
78
79 err = rtc->ops->set_mmss64(rtc->dev.parent, secs64);
80 } else if (rtc->ops->set_mmss) {
Xunlei Pangbc10aa92015-01-22 02:31:51 +000081 time64_t secs64 = rtc_tm_to_time64(tm);
82 err = rtc->ops->set_mmss(rtc->dev.parent, secs64);
Alessandro Zummobbccf832009-01-06 14:42:21 -080083 } else
84 err = -EINVAL;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080085
Zoran Markovic14d0e342013-06-26 16:09:13 -070086 pm_stay_awake(rtc->dev.parent);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080087 mutex_unlock(&rtc->ops_lock);
NeilBrown5f9679d2011-12-09 09:39:15 +110088 /* A timer might have just expired */
89 schedule_work(&rtc->irqwork);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080090 return err;
91}
92EXPORT_SYMBOL_GPL(rtc_set_time);
93
David Brownellab6a2d72007-05-08 00:33:30 -070094int rtc_set_mmss(struct rtc_device *rtc, unsigned long secs)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080095{
96 int err;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080097
98 err = mutex_lock_interruptible(&rtc->ops_lock);
99 if (err)
David Brownellb68bb262008-07-29 22:33:30 -0700100 return err;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800101
102 if (!rtc->ops)
103 err = -ENODEV;
Xunlei Pang8e4ff1a2015-04-01 20:34:27 -0700104 else if (rtc->ops->set_mmss64)
105 err = rtc->ops->set_mmss64(rtc->dev.parent, secs);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800106 else if (rtc->ops->set_mmss)
David Brownellcd966202007-05-08 00:33:40 -0700107 err = rtc->ops->set_mmss(rtc->dev.parent, secs);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800108 else if (rtc->ops->read_time && rtc->ops->set_time) {
109 struct rtc_time new, old;
110
David Brownellcd966202007-05-08 00:33:40 -0700111 err = rtc->ops->read_time(rtc->dev.parent, &old);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800112 if (err == 0) {
Xunlei Pangbc10aa92015-01-22 02:31:51 +0000113 rtc_time64_to_tm(secs, &new);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800114
115 /*
116 * avoid writing when we're going to change the day of
117 * the month. We will retry in the next minute. This
118 * basically means that if the RTC must not drift
119 * by more than 1 minute in 11 minutes.
120 */
121 if (!((old.tm_hour == 23 && old.tm_min == 59) ||
122 (new.tm_hour == 23 && new.tm_min == 59)))
David Brownellcd966202007-05-08 00:33:40 -0700123 err = rtc->ops->set_time(rtc->dev.parent,
David Brownellab6a2d72007-05-08 00:33:30 -0700124 &new);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800125 }
Sachin Kamat3ff2e132013-07-03 15:05:42 -0700126 } else {
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800127 err = -EINVAL;
Sachin Kamat3ff2e132013-07-03 15:05:42 -0700128 }
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800129
Zoran Markovic14d0e342013-06-26 16:09:13 -0700130 pm_stay_awake(rtc->dev.parent);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800131 mutex_unlock(&rtc->ops_lock);
NeilBrown5f9679d2011-12-09 09:39:15 +1100132 /* A timer might have just expired */
133 schedule_work(&rtc->irqwork);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800134
135 return err;
136}
137EXPORT_SYMBOL_GPL(rtc_set_mmss);
138
John Stultzf44f7f92011-02-21 22:58:51 -0800139static int rtc_read_alarm_internal(struct rtc_device *rtc, struct rtc_wkalrm *alarm)
140{
141 int err;
142
143 err = mutex_lock_interruptible(&rtc->ops_lock);
144 if (err)
145 return err;
146
147 if (rtc->ops == NULL)
148 err = -ENODEV;
149 else if (!rtc->ops->read_alarm)
150 err = -EINVAL;
151 else {
152 memset(alarm, 0, sizeof(struct rtc_wkalrm));
153 err = rtc->ops->read_alarm(rtc->dev.parent, alarm);
154 }
155
156 mutex_unlock(&rtc->ops_lock);
157 return err;
158}
159
160int __rtc_read_alarm(struct rtc_device *rtc, struct rtc_wkalrm *alarm)
161{
162 int err;
163 struct rtc_time before, now;
164 int first_time = 1;
Xunlei Pangbc10aa92015-01-22 02:31:51 +0000165 time64_t t_now, t_alm;
John Stultzf44f7f92011-02-21 22:58:51 -0800166 enum { none, day, month, year } missing = none;
167 unsigned days;
168
169 /* The lower level RTC driver may return -1 in some fields,
170 * creating invalid alarm->time values, for reasons like:
171 *
172 * - The hardware may not be capable of filling them in;
173 * many alarms match only on time-of-day fields, not
174 * day/month/year calendar data.
175 *
176 * - Some hardware uses illegal values as "wildcard" match
177 * values, which non-Linux firmware (like a BIOS) may try
178 * to set up as e.g. "alarm 15 minutes after each hour".
179 * Linux uses only oneshot alarms.
180 *
181 * When we see that here, we deal with it by using values from
182 * a current RTC timestamp for any missing (-1) values. The
183 * RTC driver prevents "periodic alarm" modes.
184 *
185 * But this can be racey, because some fields of the RTC timestamp
186 * may have wrapped in the interval since we read the RTC alarm,
187 * which would lead to us inserting inconsistent values in place
188 * of the -1 fields.
189 *
190 * Reading the alarm and timestamp in the reverse sequence
191 * would have the same race condition, and not solve the issue.
192 *
193 * So, we must first read the RTC timestamp,
194 * then read the RTC alarm value,
195 * and then read a second RTC timestamp.
196 *
197 * If any fields of the second timestamp have changed
198 * when compared with the first timestamp, then we know
199 * our timestamp may be inconsistent with that used by
200 * the low-level rtc_read_alarm_internal() function.
201 *
202 * So, when the two timestamps disagree, we just loop and do
203 * the process again to get a fully consistent set of values.
204 *
205 * This could all instead be done in the lower level driver,
206 * but since more than one lower level RTC implementation needs it,
207 * then it's probably best best to do it here instead of there..
208 */
209
210 /* Get the "before" timestamp */
211 err = rtc_read_time(rtc, &before);
212 if (err < 0)
213 return err;
214 do {
215 if (!first_time)
216 memcpy(&before, &now, sizeof(struct rtc_time));
217 first_time = 0;
218
219 /* get the RTC alarm values, which may be incomplete */
220 err = rtc_read_alarm_internal(rtc, alarm);
221 if (err)
222 return err;
223
224 /* full-function RTCs won't have such missing fields */
225 if (rtc_valid_tm(&alarm->time) == 0)
226 return 0;
227
228 /* get the "after" timestamp, to detect wrapped fields */
229 err = rtc_read_time(rtc, &now);
230 if (err < 0)
231 return err;
232
233 /* note that tm_sec is a "don't care" value here: */
234 } while ( before.tm_min != now.tm_min
235 || before.tm_hour != now.tm_hour
236 || before.tm_mon != now.tm_mon
237 || before.tm_year != now.tm_year);
238
239 /* Fill in the missing alarm fields using the timestamp; we
240 * know there's at least one since alarm->time is invalid.
241 */
242 if (alarm->time.tm_sec == -1)
243 alarm->time.tm_sec = now.tm_sec;
244 if (alarm->time.tm_min == -1)
245 alarm->time.tm_min = now.tm_min;
246 if (alarm->time.tm_hour == -1)
247 alarm->time.tm_hour = now.tm_hour;
248
249 /* For simplicity, only support date rollover for now */
Ben Hutchingse74a8f22012-01-10 15:11:02 -0800250 if (alarm->time.tm_mday < 1 || alarm->time.tm_mday > 31) {
John Stultzf44f7f92011-02-21 22:58:51 -0800251 alarm->time.tm_mday = now.tm_mday;
252 missing = day;
253 }
Ben Hutchingse74a8f22012-01-10 15:11:02 -0800254 if ((unsigned)alarm->time.tm_mon >= 12) {
John Stultzf44f7f92011-02-21 22:58:51 -0800255 alarm->time.tm_mon = now.tm_mon;
256 if (missing == none)
257 missing = month;
258 }
259 if (alarm->time.tm_year == -1) {
260 alarm->time.tm_year = now.tm_year;
261 if (missing == none)
262 missing = year;
263 }
264
265 /* with luck, no rollover is needed */
Xunlei Pangbc10aa92015-01-22 02:31:51 +0000266 t_now = rtc_tm_to_time64(&now);
267 t_alm = rtc_tm_to_time64(&alarm->time);
John Stultzf44f7f92011-02-21 22:58:51 -0800268 if (t_now < t_alm)
269 goto done;
270
271 switch (missing) {
272
273 /* 24 hour rollover ... if it's now 10am Monday, an alarm that
274 * that will trigger at 5am will do so at 5am Tuesday, which
275 * could also be in the next month or year. This is a common
276 * case, especially for PCs.
277 */
278 case day:
279 dev_dbg(&rtc->dev, "alarm rollover: %s\n", "day");
280 t_alm += 24 * 60 * 60;
Xunlei Pangbc10aa92015-01-22 02:31:51 +0000281 rtc_time64_to_tm(t_alm, &alarm->time);
John Stultzf44f7f92011-02-21 22:58:51 -0800282 break;
283
284 /* Month rollover ... if it's the 31th, an alarm on the 3rd will
285 * be next month. An alarm matching on the 30th, 29th, or 28th
286 * may end up in the month after that! Many newer PCs support
287 * this type of alarm.
288 */
289 case month:
290 dev_dbg(&rtc->dev, "alarm rollover: %s\n", "month");
291 do {
292 if (alarm->time.tm_mon < 11)
293 alarm->time.tm_mon++;
294 else {
295 alarm->time.tm_mon = 0;
296 alarm->time.tm_year++;
297 }
298 days = rtc_month_days(alarm->time.tm_mon,
299 alarm->time.tm_year);
300 } while (days < alarm->time.tm_mday);
301 break;
302
303 /* Year rollover ... easy except for leap years! */
304 case year:
305 dev_dbg(&rtc->dev, "alarm rollover: %s\n", "year");
306 do {
307 alarm->time.tm_year++;
Ales Novakee1d9012014-06-06 14:35:39 -0700308 } while (!is_leap_year(alarm->time.tm_year + 1900)
309 && rtc_valid_tm(&alarm->time) != 0);
John Stultzf44f7f92011-02-21 22:58:51 -0800310 break;
311
312 default:
313 dev_warn(&rtc->dev, "alarm rollover not handled\n");
314 }
315
316done:
Ales Novakee1d9012014-06-06 14:35:39 -0700317 err = rtc_valid_tm(&alarm->time);
318
319 if (err) {
320 dev_warn(&rtc->dev, "invalid alarm value: %d-%d-%d %d:%d:%d\n",
321 alarm->time.tm_year + 1900, alarm->time.tm_mon + 1,
322 alarm->time.tm_mday, alarm->time.tm_hour, alarm->time.tm_min,
323 alarm->time.tm_sec);
324 }
325
326 return err;
John Stultzf44f7f92011-02-21 22:58:51 -0800327}
328
John Stultz6610e082010-09-23 15:07:34 -0700329int rtc_read_alarm(struct rtc_device *rtc, struct rtc_wkalrm *alarm)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800330{
331 int err;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800332
333 err = mutex_lock_interruptible(&rtc->ops_lock);
334 if (err)
David Brownellb68bb262008-07-29 22:33:30 -0700335 return err;
John Stultzd5553a52011-01-20 15:26:13 -0800336 if (rtc->ops == NULL)
337 err = -ENODEV;
338 else if (!rtc->ops->read_alarm)
339 err = -EINVAL;
340 else {
341 memset(alarm, 0, sizeof(struct rtc_wkalrm));
342 alarm->enabled = rtc->aie_timer.enabled;
John Stultz6610e082010-09-23 15:07:34 -0700343 alarm->time = rtc_ktime_to_tm(rtc->aie_timer.node.expires);
John Stultzd5553a52011-01-20 15:26:13 -0800344 }
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800345 mutex_unlock(&rtc->ops_lock);
Mark Lord0e36a9a2007-10-16 01:28:21 -0700346
John Stultzd5553a52011-01-20 15:26:13 -0800347 return err;
Mark Lord0e36a9a2007-10-16 01:28:21 -0700348}
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800349EXPORT_SYMBOL_GPL(rtc_read_alarm);
350
Mark Brownd576fe42011-06-01 11:13:16 +0100351static int __rtc_set_alarm(struct rtc_device *rtc, struct rtc_wkalrm *alarm)
John Stultz6610e082010-09-23 15:07:34 -0700352{
353 struct rtc_time tm;
Xunlei Pangbc10aa92015-01-22 02:31:51 +0000354 time64_t now, scheduled;
John Stultz6610e082010-09-23 15:07:34 -0700355 int err;
356
357 err = rtc_valid_tm(&alarm->time);
358 if (err)
359 return err;
Xunlei Pangbc10aa92015-01-22 02:31:51 +0000360 scheduled = rtc_tm_to_time64(&alarm->time);
John Stultz6610e082010-09-23 15:07:34 -0700361
362 /* Make sure we're not setting alarms in the past */
363 err = __rtc_read_time(rtc, &tm);
Hyogi Gimca6dc2d2014-08-08 14:20:11 -0700364 if (err)
365 return err;
Xunlei Pangbc10aa92015-01-22 02:31:51 +0000366 now = rtc_tm_to_time64(&tm);
John Stultz6610e082010-09-23 15:07:34 -0700367 if (scheduled <= now)
368 return -ETIME;
369 /*
370 * XXX - We just checked to make sure the alarm time is not
371 * in the past, but there is still a race window where if
372 * the is alarm set for the next second and the second ticks
373 * over right here, before we set the alarm.
374 */
375
Linus Torvalds157e8bf2012-01-03 17:32:13 -0800376 if (!rtc->ops)
377 err = -ENODEV;
378 else if (!rtc->ops->set_alarm)
379 err = -EINVAL;
380 else
381 err = rtc->ops->set_alarm(rtc->dev.parent, alarm);
382
383 return err;
John Stultz6610e082010-09-23 15:07:34 -0700384}
385
David Brownellab6a2d72007-05-08 00:33:30 -0700386int rtc_set_alarm(struct rtc_device *rtc, struct rtc_wkalrm *alarm)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800387{
388 int err;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800389
David Brownellf8245c22007-05-08 00:34:07 -0700390 err = rtc_valid_tm(&alarm->time);
391 if (err != 0)
392 return err;
393
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800394 err = mutex_lock_interruptible(&rtc->ops_lock);
395 if (err)
David Brownellb68bb262008-07-29 22:33:30 -0700396 return err;
Sachin Kamat3ff2e132013-07-03 15:05:42 -0700397 if (rtc->aie_timer.enabled)
Thomas Gleixner96c8f062010-12-13 22:45:48 +0100398 rtc_timer_remove(rtc, &rtc->aie_timer);
Sachin Kamat3ff2e132013-07-03 15:05:42 -0700399
John Stultz6610e082010-09-23 15:07:34 -0700400 rtc->aie_timer.node.expires = rtc_tm_to_ktime(alarm->time);
401 rtc->aie_timer.period = ktime_set(0, 0);
Sachin Kamat3ff2e132013-07-03 15:05:42 -0700402 if (alarm->enabled)
John Stultzaa0be0f2011-01-20 15:26:12 -0800403 err = rtc_timer_enqueue(rtc, &rtc->aie_timer);
Sachin Kamat3ff2e132013-07-03 15:05:42 -0700404
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800405 mutex_unlock(&rtc->ops_lock);
John Stultzaa0be0f2011-01-20 15:26:12 -0800406 return err;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800407}
408EXPORT_SYMBOL_GPL(rtc_set_alarm);
409
John Stultzf6d5b332011-03-29 18:00:27 -0700410/* Called once per device from rtc_device_register */
411int rtc_initialize_alarm(struct rtc_device *rtc, struct rtc_wkalrm *alarm)
412{
413 int err;
John Stultzbd729d72012-01-05 15:21:19 -0800414 struct rtc_time now;
John Stultzf6d5b332011-03-29 18:00:27 -0700415
416 err = rtc_valid_tm(&alarm->time);
417 if (err != 0)
418 return err;
419
John Stultzbd729d72012-01-05 15:21:19 -0800420 err = rtc_read_time(rtc, &now);
421 if (err)
422 return err;
423
John Stultzf6d5b332011-03-29 18:00:27 -0700424 err = mutex_lock_interruptible(&rtc->ops_lock);
425 if (err)
426 return err;
427
428 rtc->aie_timer.node.expires = rtc_tm_to_ktime(alarm->time);
429 rtc->aie_timer.period = ktime_set(0, 0);
John Stultzbd729d72012-01-05 15:21:19 -0800430
431 /* Alarm has to be enabled & in the futrure for us to enqueue it */
432 if (alarm->enabled && (rtc_tm_to_ktime(now).tv64 <
433 rtc->aie_timer.node.expires.tv64)) {
434
John Stultzf6d5b332011-03-29 18:00:27 -0700435 rtc->aie_timer.enabled = 1;
436 timerqueue_add(&rtc->timerqueue, &rtc->aie_timer.node);
437 }
438 mutex_unlock(&rtc->ops_lock);
439 return err;
440}
441EXPORT_SYMBOL_GPL(rtc_initialize_alarm);
442
443
444
Alessandro Zummo099e6572009-01-04 12:00:54 -0800445int rtc_alarm_irq_enable(struct rtc_device *rtc, unsigned int enabled)
446{
447 int err = mutex_lock_interruptible(&rtc->ops_lock);
448 if (err)
449 return err;
450
John Stultz6610e082010-09-23 15:07:34 -0700451 if (rtc->aie_timer.enabled != enabled) {
John Stultzaa0be0f2011-01-20 15:26:12 -0800452 if (enabled)
453 err = rtc_timer_enqueue(rtc, &rtc->aie_timer);
454 else
Thomas Gleixner96c8f062010-12-13 22:45:48 +0100455 rtc_timer_remove(rtc, &rtc->aie_timer);
John Stultz6610e082010-09-23 15:07:34 -0700456 }
457
John Stultzaa0be0f2011-01-20 15:26:12 -0800458 if (err)
Uwe Kleine-König516373b2011-02-14 11:33:17 +0100459 /* nothing */;
460 else if (!rtc->ops)
Alessandro Zummo099e6572009-01-04 12:00:54 -0800461 err = -ENODEV;
462 else if (!rtc->ops->alarm_irq_enable)
463 err = -EINVAL;
464 else
465 err = rtc->ops->alarm_irq_enable(rtc->dev.parent, enabled);
466
467 mutex_unlock(&rtc->ops_lock);
468 return err;
469}
470EXPORT_SYMBOL_GPL(rtc_alarm_irq_enable);
471
472int rtc_update_irq_enable(struct rtc_device *rtc, unsigned int enabled)
473{
474 int err = mutex_lock_interruptible(&rtc->ops_lock);
475 if (err)
476 return err;
477
John Stultz456d66e2011-02-11 18:15:23 -0800478#ifdef CONFIG_RTC_INTF_DEV_UIE_EMUL
479 if (enabled == 0 && rtc->uie_irq_active) {
480 mutex_unlock(&rtc->ops_lock);
481 return rtc_dev_update_irq_enable_emul(rtc, 0);
482 }
483#endif
John Stultz6610e082010-09-23 15:07:34 -0700484 /* make sure we're changing state */
485 if (rtc->uie_rtctimer.enabled == enabled)
486 goto out;
487
John Stultz4a649902012-03-06 17:16:09 -0800488 if (rtc->uie_unsupported) {
489 err = -EINVAL;
490 goto out;
491 }
492
John Stultz6610e082010-09-23 15:07:34 -0700493 if (enabled) {
494 struct rtc_time tm;
495 ktime_t now, onesec;
496
497 __rtc_read_time(rtc, &tm);
498 onesec = ktime_set(1, 0);
499 now = rtc_tm_to_ktime(tm);
500 rtc->uie_rtctimer.node.expires = ktime_add(now, onesec);
501 rtc->uie_rtctimer.period = ktime_set(1, 0);
John Stultzaa0be0f2011-01-20 15:26:12 -0800502 err = rtc_timer_enqueue(rtc, &rtc->uie_rtctimer);
503 } else
Thomas Gleixner96c8f062010-12-13 22:45:48 +0100504 rtc_timer_remove(rtc, &rtc->uie_rtctimer);
Alessandro Zummo099e6572009-01-04 12:00:54 -0800505
John Stultz6610e082010-09-23 15:07:34 -0700506out:
Alessandro Zummo099e6572009-01-04 12:00:54 -0800507 mutex_unlock(&rtc->ops_lock);
John Stultz456d66e2011-02-11 18:15:23 -0800508#ifdef CONFIG_RTC_INTF_DEV_UIE_EMUL
509 /*
510 * Enable emulation if the driver did not provide
511 * the update_irq_enable function pointer or if returned
512 * -EINVAL to signal that it has been configured without
513 * interrupts or that are not available at the moment.
514 */
515 if (err == -EINVAL)
516 err = rtc_dev_update_irq_enable_emul(rtc, enabled);
517#endif
Alessandro Zummo099e6572009-01-04 12:00:54 -0800518 return err;
John Stultz6610e082010-09-23 15:07:34 -0700519
Alessandro Zummo099e6572009-01-04 12:00:54 -0800520}
521EXPORT_SYMBOL_GPL(rtc_update_irq_enable);
522
John Stultz6610e082010-09-23 15:07:34 -0700523
David Brownelld728b1e2006-11-25 11:09:28 -0800524/**
John Stultz6610e082010-09-23 15:07:34 -0700525 * rtc_handle_legacy_irq - AIE, UIE and PIE event hook
526 * @rtc: pointer to the rtc device
527 *
528 * This function is called when an AIE, UIE or PIE mode interrupt
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300529 * has occurred (or been emulated).
John Stultz6610e082010-09-23 15:07:34 -0700530 *
531 * Triggers the registered irq_task function callback.
532 */
John Stultz456d66e2011-02-11 18:15:23 -0800533void rtc_handle_legacy_irq(struct rtc_device *rtc, int num, int mode)
John Stultz6610e082010-09-23 15:07:34 -0700534{
535 unsigned long flags;
536
537 /* mark one irq of the appropriate mode */
538 spin_lock_irqsave(&rtc->irq_lock, flags);
539 rtc->irq_data = (rtc->irq_data + (num << 8)) | (RTC_IRQF|mode);
540 spin_unlock_irqrestore(&rtc->irq_lock, flags);
541
542 /* call the task func */
543 spin_lock_irqsave(&rtc->irq_task_lock, flags);
544 if (rtc->irq_task)
545 rtc->irq_task->func(rtc->irq_task->private_data);
546 spin_unlock_irqrestore(&rtc->irq_task_lock, flags);
547
548 wake_up_interruptible(&rtc->irq_queue);
549 kill_fasync(&rtc->async_queue, SIGIO, POLL_IN);
550}
551
552
553/**
554 * rtc_aie_update_irq - AIE mode rtctimer hook
555 * @private: pointer to the rtc_device
556 *
557 * This functions is called when the aie_timer expires.
558 */
559void rtc_aie_update_irq(void *private)
560{
561 struct rtc_device *rtc = (struct rtc_device *)private;
562 rtc_handle_legacy_irq(rtc, 1, RTC_AF);
563}
564
565
566/**
567 * rtc_uie_update_irq - UIE mode rtctimer hook
568 * @private: pointer to the rtc_device
569 *
570 * This functions is called when the uie_timer expires.
571 */
572void rtc_uie_update_irq(void *private)
573{
574 struct rtc_device *rtc = (struct rtc_device *)private;
575 rtc_handle_legacy_irq(rtc, 1, RTC_UF);
576}
577
578
579/**
580 * rtc_pie_update_irq - PIE mode hrtimer hook
581 * @timer: pointer to the pie mode hrtimer
582 *
583 * This function is used to emulate PIE mode interrupts
584 * using an hrtimer. This function is called when the periodic
585 * hrtimer expires.
586 */
587enum hrtimer_restart rtc_pie_update_irq(struct hrtimer *timer)
588{
589 struct rtc_device *rtc;
590 ktime_t period;
591 int count;
592 rtc = container_of(timer, struct rtc_device, pie_timer);
593
594 period = ktime_set(0, NSEC_PER_SEC/rtc->irq_freq);
595 count = hrtimer_forward_now(timer, period);
596
597 rtc_handle_legacy_irq(rtc, count, RTC_PF);
598
599 return HRTIMER_RESTART;
600}
601
602/**
603 * rtc_update_irq - Triggered when a RTC interrupt occurs.
David Brownellab6a2d72007-05-08 00:33:30 -0700604 * @rtc: the rtc device
David Brownelld728b1e2006-11-25 11:09:28 -0800605 * @num: how many irqs are being reported (usually one)
606 * @events: mask of RTC_IRQF with one or more of RTC_PF, RTC_AF, RTC_UF
Atsushi Nemotoe6229bec2009-06-18 16:49:09 -0700607 * Context: any
David Brownelld728b1e2006-11-25 11:09:28 -0800608 */
David Brownellab6a2d72007-05-08 00:33:30 -0700609void rtc_update_irq(struct rtc_device *rtc,
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800610 unsigned long num, unsigned long events)
611{
Alessandro Zummo131c9cc2014-04-03 14:50:09 -0700612 if (unlikely(IS_ERR_OR_NULL(rtc)))
613 return;
614
NeilBrown7523cee2012-08-05 22:56:20 +0200615 pm_stay_awake(rtc->dev.parent);
John Stultz6610e082010-09-23 15:07:34 -0700616 schedule_work(&rtc->irqwork);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800617}
618EXPORT_SYMBOL_GPL(rtc_update_irq);
619
Michał Mirosław9f3b7952013-02-01 20:40:17 +0100620static int __rtc_match(struct device *dev, const void *data)
Dave Young71da8902008-01-22 14:00:34 +0800621{
Michał Mirosław9f3b7952013-02-01 20:40:17 +0100622 const char *name = data;
Dave Young71da8902008-01-22 14:00:34 +0800623
Kay Sieversd4afc762009-01-06 14:42:11 -0800624 if (strcmp(dev_name(dev), name) == 0)
Dave Young71da8902008-01-22 14:00:34 +0800625 return 1;
626 return 0;
627}
628
Michał Mirosław9f3b7952013-02-01 20:40:17 +0100629struct rtc_device *rtc_class_open(const char *name)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800630{
David Brownellcd966202007-05-08 00:33:40 -0700631 struct device *dev;
David Brownellab6a2d72007-05-08 00:33:30 -0700632 struct rtc_device *rtc = NULL;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800633
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -0400634 dev = class_find_device(rtc_class, NULL, name, __rtc_match);
Dave Young71da8902008-01-22 14:00:34 +0800635 if (dev)
636 rtc = to_rtc_device(dev);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800637
David Brownellab6a2d72007-05-08 00:33:30 -0700638 if (rtc) {
639 if (!try_module_get(rtc->owner)) {
David Brownellcd966202007-05-08 00:33:40 -0700640 put_device(dev);
David Brownellab6a2d72007-05-08 00:33:30 -0700641 rtc = NULL;
642 }
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800643 }
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800644
David Brownellab6a2d72007-05-08 00:33:30 -0700645 return rtc;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800646}
647EXPORT_SYMBOL_GPL(rtc_class_open);
648
David Brownellab6a2d72007-05-08 00:33:30 -0700649void rtc_class_close(struct rtc_device *rtc)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800650{
David Brownellab6a2d72007-05-08 00:33:30 -0700651 module_put(rtc->owner);
David Brownellcd966202007-05-08 00:33:40 -0700652 put_device(&rtc->dev);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800653}
654EXPORT_SYMBOL_GPL(rtc_class_close);
655
David Brownellab6a2d72007-05-08 00:33:30 -0700656int rtc_irq_register(struct rtc_device *rtc, struct rtc_task *task)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800657{
658 int retval = -EBUSY;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800659
660 if (task == NULL || task->func == NULL)
661 return -EINVAL;
662
Alessandro Zummod691eb92007-10-16 01:28:15 -0700663 /* Cannot register while the char dev is in use */
Jiri Kosina372a3022007-12-04 23:45:05 -0800664 if (test_and_set_bit_lock(RTC_DEV_BUSY, &rtc->flags))
Alessandro Zummod691eb92007-10-16 01:28:15 -0700665 return -EBUSY;
666
David Brownelld728b1e2006-11-25 11:09:28 -0800667 spin_lock_irq(&rtc->irq_task_lock);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800668 if (rtc->irq_task == NULL) {
669 rtc->irq_task = task;
670 retval = 0;
671 }
David Brownelld728b1e2006-11-25 11:09:28 -0800672 spin_unlock_irq(&rtc->irq_task_lock);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800673
Jiri Kosina372a3022007-12-04 23:45:05 -0800674 clear_bit_unlock(RTC_DEV_BUSY, &rtc->flags);
Alessandro Zummod691eb92007-10-16 01:28:15 -0700675
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800676 return retval;
677}
678EXPORT_SYMBOL_GPL(rtc_irq_register);
679
David Brownellab6a2d72007-05-08 00:33:30 -0700680void rtc_irq_unregister(struct rtc_device *rtc, struct rtc_task *task)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800681{
David Brownelld728b1e2006-11-25 11:09:28 -0800682 spin_lock_irq(&rtc->irq_task_lock);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800683 if (rtc->irq_task == task)
684 rtc->irq_task = NULL;
David Brownelld728b1e2006-11-25 11:09:28 -0800685 spin_unlock_irq(&rtc->irq_task_lock);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800686}
687EXPORT_SYMBOL_GPL(rtc_irq_unregister);
688
Thomas Gleixner3c8bb902011-07-22 09:12:51 +0000689static int rtc_update_hrtimer(struct rtc_device *rtc, int enabled)
690{
691 /*
692 * We always cancel the timer here first, because otherwise
693 * we could run into BUG_ON(timer->state != HRTIMER_STATE_CALLBACK);
694 * when we manage to start the timer before the callback
695 * returns HRTIMER_RESTART.
696 *
697 * We cannot use hrtimer_cancel() here as a running callback
698 * could be blocked on rtc->irq_task_lock and hrtimer_cancel()
699 * would spin forever.
700 */
701 if (hrtimer_try_to_cancel(&rtc->pie_timer) < 0)
702 return -1;
703
704 if (enabled) {
705 ktime_t period = ktime_set(0, NSEC_PER_SEC / rtc->irq_freq);
706
707 hrtimer_start(&rtc->pie_timer, period, HRTIMER_MODE_REL);
708 }
709 return 0;
710}
711
David Brownell97144c62007-10-16 01:28:16 -0700712/**
713 * rtc_irq_set_state - enable/disable 2^N Hz periodic IRQs
714 * @rtc: the rtc device
715 * @task: currently registered with rtc_irq_register()
716 * @enabled: true to enable periodic IRQs
717 * Context: any
718 *
719 * Note that rtc_irq_set_freq() should previously have been used to
720 * specify the desired frequency of periodic IRQ task->func() callbacks.
721 */
David Brownellab6a2d72007-05-08 00:33:30 -0700722int rtc_irq_set_state(struct rtc_device *rtc, struct rtc_task *task, int enabled)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800723{
724 int err = 0;
725 unsigned long flags;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800726
Thomas Gleixner3c8bb902011-07-22 09:12:51 +0000727retry:
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800728 spin_lock_irqsave(&rtc->irq_task_lock, flags);
Alessandro Zummod691eb92007-10-16 01:28:15 -0700729 if (rtc->irq_task != NULL && task == NULL)
730 err = -EBUSY;
Chris Brand0734e272013-07-03 15:07:57 -0700731 else if (rtc->irq_task != task)
Alessandro Zummod691eb92007-10-16 01:28:15 -0700732 err = -EACCES;
Chris Brand0734e272013-07-03 15:07:57 -0700733 else {
Thomas Gleixner3c8bb902011-07-22 09:12:51 +0000734 if (rtc_update_hrtimer(rtc, enabled) < 0) {
735 spin_unlock_irqrestore(&rtc->irq_task_lock, flags);
736 cpu_relax();
737 goto retry;
738 }
739 rtc->pie_enabled = enabled;
John Stultz6610e082010-09-23 15:07:34 -0700740 }
John Stultz6610e082010-09-23 15:07:34 -0700741 spin_unlock_irqrestore(&rtc->irq_task_lock, flags);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800742 return err;
743}
744EXPORT_SYMBOL_GPL(rtc_irq_set_state);
745
David Brownell97144c62007-10-16 01:28:16 -0700746/**
747 * rtc_irq_set_freq - set 2^N Hz periodic IRQ frequency for IRQ
748 * @rtc: the rtc device
749 * @task: currently registered with rtc_irq_register()
750 * @freq: positive frequency with which task->func() will be called
751 * Context: any
752 *
753 * Note that rtc_irq_set_state() is used to enable or disable the
754 * periodic IRQs.
755 */
David Brownellab6a2d72007-05-08 00:33:30 -0700756int rtc_irq_set_freq(struct rtc_device *rtc, struct rtc_task *task, int freq)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800757{
Alessandro Zummo56f10c62006-06-25 05:48:20 -0700758 int err = 0;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800759 unsigned long flags;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800760
Thomas Gleixner6e7a3332011-07-22 09:12:51 +0000761 if (freq <= 0 || freq > RTC_MAX_FREQ)
Marcelo Roberto Jimenez83a06bf2011-02-02 16:04:02 -0200762 return -EINVAL;
Thomas Gleixner3c8bb902011-07-22 09:12:51 +0000763retry:
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800764 spin_lock_irqsave(&rtc->irq_task_lock, flags);
Alessandro Zummod691eb92007-10-16 01:28:15 -0700765 if (rtc->irq_task != NULL && task == NULL)
766 err = -EBUSY;
Chris Brand0734e272013-07-03 15:07:57 -0700767 else if (rtc->irq_task != task)
Alessandro Zummod691eb92007-10-16 01:28:15 -0700768 err = -EACCES;
Chris Brand0734e272013-07-03 15:07:57 -0700769 else {
John Stultz6610e082010-09-23 15:07:34 -0700770 rtc->irq_freq = freq;
Thomas Gleixner3c8bb902011-07-22 09:12:51 +0000771 if (rtc->pie_enabled && rtc_update_hrtimer(rtc, 1) < 0) {
772 spin_unlock_irqrestore(&rtc->irq_task_lock, flags);
773 cpu_relax();
774 goto retry;
John Stultz6610e082010-09-23 15:07:34 -0700775 }
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800776 }
John Stultz6610e082010-09-23 15:07:34 -0700777 spin_unlock_irqrestore(&rtc->irq_task_lock, flags);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800778 return err;
779}
David Brownell2601a462006-11-25 11:09:27 -0800780EXPORT_SYMBOL_GPL(rtc_irq_set_freq);
John Stultz6610e082010-09-23 15:07:34 -0700781
782/**
Thomas Gleixner96c8f062010-12-13 22:45:48 +0100783 * rtc_timer_enqueue - Adds a rtc_timer to the rtc_device timerqueue
John Stultz6610e082010-09-23 15:07:34 -0700784 * @rtc rtc device
785 * @timer timer being added.
786 *
787 * Enqueues a timer onto the rtc devices timerqueue and sets
788 * the next alarm event appropriately.
789 *
John Stultzaa0be0f2011-01-20 15:26:12 -0800790 * Sets the enabled bit on the added timer.
791 *
John Stultz6610e082010-09-23 15:07:34 -0700792 * Must hold ops_lock for proper serialization of timerqueue
793 */
John Stultzaa0be0f2011-01-20 15:26:12 -0800794static int rtc_timer_enqueue(struct rtc_device *rtc, struct rtc_timer *timer)
John Stultz6610e082010-09-23 15:07:34 -0700795{
John Stultzaa0be0f2011-01-20 15:26:12 -0800796 timer->enabled = 1;
John Stultz6610e082010-09-23 15:07:34 -0700797 timerqueue_add(&rtc->timerqueue, &timer->node);
798 if (&timer->node == timerqueue_getnext(&rtc->timerqueue)) {
799 struct rtc_wkalrm alarm;
800 int err;
801 alarm.time = rtc_ktime_to_tm(timer->node.expires);
802 alarm.enabled = 1;
803 err = __rtc_set_alarm(rtc, &alarm);
Zoran Markovic14d0e342013-06-26 16:09:13 -0700804 if (err == -ETIME) {
805 pm_stay_awake(rtc->dev.parent);
John Stultz6610e082010-09-23 15:07:34 -0700806 schedule_work(&rtc->irqwork);
Zoran Markovic14d0e342013-06-26 16:09:13 -0700807 } else if (err) {
John Stultzaa0be0f2011-01-20 15:26:12 -0800808 timerqueue_del(&rtc->timerqueue, &timer->node);
809 timer->enabled = 0;
810 return err;
811 }
John Stultz6610e082010-09-23 15:07:34 -0700812 }
John Stultzaa0be0f2011-01-20 15:26:12 -0800813 return 0;
John Stultz6610e082010-09-23 15:07:34 -0700814}
815
Rabin Vincent41c7f742011-11-22 11:03:14 +0100816static void rtc_alarm_disable(struct rtc_device *rtc)
817{
818 if (!rtc->ops || !rtc->ops->alarm_irq_enable)
819 return;
820
821 rtc->ops->alarm_irq_enable(rtc->dev.parent, false);
822}
823
John Stultz6610e082010-09-23 15:07:34 -0700824/**
Thomas Gleixner96c8f062010-12-13 22:45:48 +0100825 * rtc_timer_remove - Removes a rtc_timer from the rtc_device timerqueue
John Stultz6610e082010-09-23 15:07:34 -0700826 * @rtc rtc device
827 * @timer timer being removed.
828 *
829 * Removes a timer onto the rtc devices timerqueue and sets
830 * the next alarm event appropriately.
831 *
John Stultzaa0be0f2011-01-20 15:26:12 -0800832 * Clears the enabled bit on the removed timer.
833 *
John Stultz6610e082010-09-23 15:07:34 -0700834 * Must hold ops_lock for proper serialization of timerqueue
835 */
John Stultzaa0be0f2011-01-20 15:26:12 -0800836static void rtc_timer_remove(struct rtc_device *rtc, struct rtc_timer *timer)
John Stultz6610e082010-09-23 15:07:34 -0700837{
838 struct timerqueue_node *next = timerqueue_getnext(&rtc->timerqueue);
839 timerqueue_del(&rtc->timerqueue, &timer->node);
John Stultzaa0be0f2011-01-20 15:26:12 -0800840 timer->enabled = 0;
John Stultz6610e082010-09-23 15:07:34 -0700841 if (next == &timer->node) {
842 struct rtc_wkalrm alarm;
843 int err;
844 next = timerqueue_getnext(&rtc->timerqueue);
Rabin Vincent41c7f742011-11-22 11:03:14 +0100845 if (!next) {
846 rtc_alarm_disable(rtc);
John Stultz6610e082010-09-23 15:07:34 -0700847 return;
Rabin Vincent41c7f742011-11-22 11:03:14 +0100848 }
John Stultz6610e082010-09-23 15:07:34 -0700849 alarm.time = rtc_ktime_to_tm(next->expires);
850 alarm.enabled = 1;
851 err = __rtc_set_alarm(rtc, &alarm);
Zoran Markovic14d0e342013-06-26 16:09:13 -0700852 if (err == -ETIME) {
853 pm_stay_awake(rtc->dev.parent);
John Stultz6610e082010-09-23 15:07:34 -0700854 schedule_work(&rtc->irqwork);
Zoran Markovic14d0e342013-06-26 16:09:13 -0700855 }
John Stultz6610e082010-09-23 15:07:34 -0700856 }
857}
858
859/**
Thomas Gleixner96c8f062010-12-13 22:45:48 +0100860 * rtc_timer_do_work - Expires rtc timers
John Stultz6610e082010-09-23 15:07:34 -0700861 * @rtc rtc device
862 * @timer timer being removed.
863 *
864 * Expires rtc timers. Reprograms next alarm event if needed.
865 * Called via worktask.
866 *
867 * Serializes access to timerqueue via ops_lock mutex
868 */
Thomas Gleixner96c8f062010-12-13 22:45:48 +0100869void rtc_timer_do_work(struct work_struct *work)
John Stultz6610e082010-09-23 15:07:34 -0700870{
871 struct rtc_timer *timer;
872 struct timerqueue_node *next;
873 ktime_t now;
874 struct rtc_time tm;
875
876 struct rtc_device *rtc =
877 container_of(work, struct rtc_device, irqwork);
878
879 mutex_lock(&rtc->ops_lock);
880again:
881 __rtc_read_time(rtc, &tm);
882 now = rtc_tm_to_ktime(tm);
883 while ((next = timerqueue_getnext(&rtc->timerqueue))) {
884 if (next->expires.tv64 > now.tv64)
885 break;
886
887 /* expire timer */
888 timer = container_of(next, struct rtc_timer, node);
889 timerqueue_del(&rtc->timerqueue, &timer->node);
890 timer->enabled = 0;
891 if (timer->task.func)
892 timer->task.func(timer->task.private_data);
893
894 /* Re-add/fwd periodic timers */
895 if (ktime_to_ns(timer->period)) {
896 timer->node.expires = ktime_add(timer->node.expires,
897 timer->period);
898 timer->enabled = 1;
899 timerqueue_add(&rtc->timerqueue, &timer->node);
900 }
901 }
902
903 /* Set next alarm */
904 if (next) {
905 struct rtc_wkalrm alarm;
906 int err;
Xunlei Pang6528b882014-12-10 15:54:26 -0800907 int retry = 3;
908
John Stultz6610e082010-09-23 15:07:34 -0700909 alarm.time = rtc_ktime_to_tm(next->expires);
910 alarm.enabled = 1;
Xunlei Pang6528b882014-12-10 15:54:26 -0800911reprogram:
John Stultz6610e082010-09-23 15:07:34 -0700912 err = __rtc_set_alarm(rtc, &alarm);
913 if (err == -ETIME)
914 goto again;
Xunlei Pang6528b882014-12-10 15:54:26 -0800915 else if (err) {
916 if (retry-- > 0)
917 goto reprogram;
918
919 timer = container_of(next, struct rtc_timer, node);
920 timerqueue_del(&rtc->timerqueue, &timer->node);
921 timer->enabled = 0;
922 dev_err(&rtc->dev, "__rtc_set_alarm: err=%d\n", err);
923 goto again;
924 }
Rabin Vincent41c7f742011-11-22 11:03:14 +0100925 } else
926 rtc_alarm_disable(rtc);
John Stultz6610e082010-09-23 15:07:34 -0700927
Zoran Markovic14d0e342013-06-26 16:09:13 -0700928 pm_relax(rtc->dev.parent);
John Stultz6610e082010-09-23 15:07:34 -0700929 mutex_unlock(&rtc->ops_lock);
930}
931
932
Thomas Gleixner96c8f062010-12-13 22:45:48 +0100933/* rtc_timer_init - Initializes an rtc_timer
John Stultz6610e082010-09-23 15:07:34 -0700934 * @timer: timer to be intiialized
935 * @f: function pointer to be called when timer fires
936 * @data: private data passed to function pointer
937 *
938 * Kernel interface to initializing an rtc_timer.
939 */
Sachin Kamat3ff2e132013-07-03 15:05:42 -0700940void rtc_timer_init(struct rtc_timer *timer, void (*f)(void *p), void *data)
John Stultz6610e082010-09-23 15:07:34 -0700941{
942 timerqueue_init(&timer->node);
943 timer->enabled = 0;
944 timer->task.func = f;
945 timer->task.private_data = data;
946}
947
Thomas Gleixner96c8f062010-12-13 22:45:48 +0100948/* rtc_timer_start - Sets an rtc_timer to fire in the future
John Stultz6610e082010-09-23 15:07:34 -0700949 * @ rtc: rtc device to be used
950 * @ timer: timer being set
951 * @ expires: time at which to expire the timer
952 * @ period: period that the timer will recur
953 *
954 * Kernel interface to set an rtc_timer
955 */
Sachin Kamat3ff2e132013-07-03 15:05:42 -0700956int rtc_timer_start(struct rtc_device *rtc, struct rtc_timer *timer,
John Stultz6610e082010-09-23 15:07:34 -0700957 ktime_t expires, ktime_t period)
958{
959 int ret = 0;
960 mutex_lock(&rtc->ops_lock);
961 if (timer->enabled)
Thomas Gleixner96c8f062010-12-13 22:45:48 +0100962 rtc_timer_remove(rtc, timer);
John Stultz6610e082010-09-23 15:07:34 -0700963
964 timer->node.expires = expires;
965 timer->period = period;
966
John Stultzaa0be0f2011-01-20 15:26:12 -0800967 ret = rtc_timer_enqueue(rtc, timer);
John Stultz6610e082010-09-23 15:07:34 -0700968
969 mutex_unlock(&rtc->ops_lock);
970 return ret;
971}
972
Thomas Gleixner96c8f062010-12-13 22:45:48 +0100973/* rtc_timer_cancel - Stops an rtc_timer
John Stultz6610e082010-09-23 15:07:34 -0700974 * @ rtc: rtc device to be used
975 * @ timer: timer being set
976 *
977 * Kernel interface to cancel an rtc_timer
978 */
Sachin Kamat3ff2e132013-07-03 15:05:42 -0700979int rtc_timer_cancel(struct rtc_device *rtc, struct rtc_timer *timer)
John Stultz6610e082010-09-23 15:07:34 -0700980{
981 int ret = 0;
982 mutex_lock(&rtc->ops_lock);
983 if (timer->enabled)
Thomas Gleixner96c8f062010-12-13 22:45:48 +0100984 rtc_timer_remove(rtc, timer);
John Stultz6610e082010-09-23 15:07:34 -0700985 mutex_unlock(&rtc->ops_lock);
986 return ret;
987}
988
989