blob: 154d5563ab1bce3fbf07ed11e354ab88d3a05fc7 [file] [log] [blame]
John Stultzff3ead92011-01-11 09:42:13 -08001/*
2 * Alarmtimer interface
3 *
4 * This interface provides a timer which is similarto hrtimers,
5 * but triggers a RTC alarm if the box is suspend.
6 *
7 * This interface is influenced by the Android RTC Alarm timer
8 * interface.
9 *
10 * Copyright (C) 2010 IBM Corperation
11 *
12 * Author: John Stultz <john.stultz@linaro.org>
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License version 2 as
16 * published by the Free Software Foundation.
17 */
18#include <linux/time.h>
19#include <linux/hrtimer.h>
20#include <linux/timerqueue.h>
21#include <linux/rtc.h>
22#include <linux/alarmtimer.h>
23#include <linux/mutex.h>
24#include <linux/platform_device.h>
25#include <linux/posix-timers.h>
26#include <linux/workqueue.h>
27#include <linux/freezer.h>
28
John Stultz180bf812011-04-28 12:58:11 -070029/**
30 * struct alarm_base - Alarm timer bases
31 * @lock: Lock for syncrhonized access to the base
32 * @timerqueue: Timerqueue head managing the list of events
33 * @timer: hrtimer used to schedule events while running
34 * @gettime: Function to read the time correlating to the base
35 * @base_clockid: clockid for the base
John Stultz180bf812011-04-28 12:58:11 -070036 */
John Stultzff3ead92011-01-11 09:42:13 -080037static struct alarm_base {
38 spinlock_t lock;
39 struct timerqueue_head timerqueue;
40 struct hrtimer timer;
41 ktime_t (*gettime)(void);
42 clockid_t base_clockid;
John Stultzff3ead92011-01-11 09:42:13 -080043} alarm_bases[ALARM_NUMTYPE];
44
John Stultzc008ba582011-06-16 18:27:09 -070045/* freezer delta & lock used to handle clock_nanosleep triggered wakeups */
46static ktime_t freezer_delta;
47static DEFINE_SPINLOCK(freezer_delta_lock);
48
John Stultz472647d2011-04-29 15:03:10 -070049#ifdef CONFIG_RTC_CLASS
John Stultz180bf812011-04-28 12:58:11 -070050/* rtc timer and device for setting alarm wakeups at suspend */
John Stultzff3ead92011-01-11 09:42:13 -080051static struct rtc_timer rtctimer;
52static struct rtc_device *rtcdev;
John Stultzc008ba582011-06-16 18:27:09 -070053static DEFINE_SPINLOCK(rtcdev_lock);
John Stultzff3ead92011-01-11 09:42:13 -080054
John Stultzc008ba582011-06-16 18:27:09 -070055/**
John Stultzc008ba582011-06-16 18:27:09 -070056 * alarmtimer_get_rtcdev - Return selected rtcdevice
57 *
58 * This function returns the rtc device to use for wakealarms.
59 * If one has not already been chosen, it checks to see if a
60 * functional rtc device is available.
61 */
62static struct rtc_device *alarmtimer_get_rtcdev(void)
63{
John Stultzc008ba582011-06-16 18:27:09 -070064 unsigned long flags;
65 struct rtc_device *ret;
66
67 spin_lock_irqsave(&rtcdev_lock, flags);
John Stultzc008ba582011-06-16 18:27:09 -070068 ret = rtcdev;
69 spin_unlock_irqrestore(&rtcdev_lock, flags);
70
71 return ret;
72}
John Stultz8bc0daf2011-07-14 18:35:13 -070073
74
75static int alarmtimer_rtc_add_device(struct device *dev,
76 struct class_interface *class_intf)
77{
78 unsigned long flags;
79 struct rtc_device *rtc = to_rtc_device(dev);
80
81 if (rtcdev)
82 return -EBUSY;
83
84 if (!rtc->ops->set_alarm)
85 return -1;
86 if (!device_may_wakeup(rtc->dev.parent))
87 return -1;
88
89 spin_lock_irqsave(&rtcdev_lock, flags);
90 if (!rtcdev) {
91 rtcdev = rtc;
92 /* hold a reference so it doesn't go away */
93 get_device(dev);
94 }
95 spin_unlock_irqrestore(&rtcdev_lock, flags);
96 return 0;
97}
98
99static struct class_interface alarmtimer_rtc_interface = {
100 .add_dev = &alarmtimer_rtc_add_device,
101};
102
103static void alarmtimer_rtc_interface_setup(void)
104{
105 alarmtimer_rtc_interface.class = rtc_class;
106 class_interface_register(&alarmtimer_rtc_interface);
107}
John Stultz1c6b39a2011-06-16 18:47:37 -0700108#else
109#define alarmtimer_get_rtcdev() (0)
110#define rtcdev (0)
John Stultz8bc0daf2011-07-14 18:35:13 -0700111#define alarmtimer_rtc_interface_setup()
John Stultzc008ba582011-06-16 18:27:09 -0700112#endif
John Stultzff3ead92011-01-11 09:42:13 -0800113
114
John Stultz8bc0daf2011-07-14 18:35:13 -0700115
John Stultz180bf812011-04-28 12:58:11 -0700116/**
John Stultzff3ead92011-01-11 09:42:13 -0800117 * alarmtimer_enqueue - Adds an alarm timer to an alarm_base timerqueue
118 * @base: pointer to the base where the timer is being run
119 * @alarm: pointer to alarm being enqueued.
120 *
121 * Adds alarm to a alarm_base timerqueue and if necessary sets
122 * an hrtimer to run.
123 *
124 * Must hold base->lock when calling.
125 */
126static void alarmtimer_enqueue(struct alarm_base *base, struct alarm *alarm)
127{
128 timerqueue_add(&base->timerqueue, &alarm->node);
John Stultza28cde82011-08-10 12:30:21 -0700129 alarm->state |= ALARMTIMER_STATE_ENQUEUED;
130
John Stultzff3ead92011-01-11 09:42:13 -0800131 if (&alarm->node == timerqueue_getnext(&base->timerqueue)) {
132 hrtimer_try_to_cancel(&base->timer);
133 hrtimer_start(&base->timer, alarm->node.expires,
134 HRTIMER_MODE_ABS);
135 }
136}
137
John Stultz180bf812011-04-28 12:58:11 -0700138/**
John Stultzff3ead92011-01-11 09:42:13 -0800139 * alarmtimer_remove - Removes an alarm timer from an alarm_base timerqueue
140 * @base: pointer to the base where the timer is running
141 * @alarm: pointer to alarm being removed
142 *
143 * Removes alarm to a alarm_base timerqueue and if necessary sets
144 * a new timer to run.
145 *
146 * Must hold base->lock when calling.
147 */
148static void alarmtimer_remove(struct alarm_base *base, struct alarm *alarm)
149{
150 struct timerqueue_node *next = timerqueue_getnext(&base->timerqueue);
151
John Stultza28cde82011-08-10 12:30:21 -0700152 if (!(alarm->state & ALARMTIMER_STATE_ENQUEUED))
153 return;
154
John Stultzff3ead92011-01-11 09:42:13 -0800155 timerqueue_del(&base->timerqueue, &alarm->node);
John Stultza28cde82011-08-10 12:30:21 -0700156 alarm->state &= ~ALARMTIMER_STATE_ENQUEUED;
157
John Stultzff3ead92011-01-11 09:42:13 -0800158 if (next == &alarm->node) {
159 hrtimer_try_to_cancel(&base->timer);
160 next = timerqueue_getnext(&base->timerqueue);
161 if (!next)
162 return;
163 hrtimer_start(&base->timer, next->expires, HRTIMER_MODE_ABS);
164 }
165}
166
John Stultz7068b7a2011-04-28 13:29:18 -0700167
John Stultz180bf812011-04-28 12:58:11 -0700168/**
John Stultz7068b7a2011-04-28 13:29:18 -0700169 * alarmtimer_fired - Handles alarm hrtimer being fired.
170 * @timer: pointer to hrtimer being run
John Stultzff3ead92011-01-11 09:42:13 -0800171 *
John Stultz180bf812011-04-28 12:58:11 -0700172 * When a alarm timer fires, this runs through the timerqueue to
173 * see which alarms expired, and runs those. If there are more alarm
174 * timers queued for the future, we set the hrtimer to fire when
175 * when the next future alarm timer expires.
John Stultzff3ead92011-01-11 09:42:13 -0800176 */
John Stultz7068b7a2011-04-28 13:29:18 -0700177static enum hrtimer_restart alarmtimer_fired(struct hrtimer *timer)
John Stultzff3ead92011-01-11 09:42:13 -0800178{
John Stultz7068b7a2011-04-28 13:29:18 -0700179 struct alarm_base *base = container_of(timer, struct alarm_base, timer);
John Stultzff3ead92011-01-11 09:42:13 -0800180 struct timerqueue_node *next;
181 unsigned long flags;
182 ktime_t now;
John Stultz7068b7a2011-04-28 13:29:18 -0700183 int ret = HRTIMER_NORESTART;
John Stultz54da23b2011-08-10 11:08:07 -0700184 int restart = ALARMTIMER_NORESTART;
John Stultzff3ead92011-01-11 09:42:13 -0800185
186 spin_lock_irqsave(&base->lock, flags);
187 now = base->gettime();
188 while ((next = timerqueue_getnext(&base->timerqueue))) {
189 struct alarm *alarm;
190 ktime_t expired = next->expires;
191
192 if (expired.tv64 >= now.tv64)
193 break;
194
195 alarm = container_of(next, struct alarm, node);
196
197 timerqueue_del(&base->timerqueue, &alarm->node);
John Stultza28cde82011-08-10 12:30:21 -0700198 alarm->state &= ~ALARMTIMER_STATE_ENQUEUED;
John Stultz54da23b2011-08-10 11:08:07 -0700199
John Stultza28cde82011-08-10 12:30:21 -0700200 alarm->state |= ALARMTIMER_STATE_CALLBACK;
John Stultz54da23b2011-08-10 11:08:07 -0700201 spin_unlock_irqrestore(&base->lock, flags);
202 if (alarm->function)
203 restart = alarm->function(alarm, now);
204 spin_lock_irqsave(&base->lock, flags);
John Stultza28cde82011-08-10 12:30:21 -0700205 alarm->state &= ~ALARMTIMER_STATE_CALLBACK;
John Stultz54da23b2011-08-10 11:08:07 -0700206
207 if (restart != ALARMTIMER_NORESTART) {
John Stultzff3ead92011-01-11 09:42:13 -0800208 timerqueue_add(&base->timerqueue, &alarm->node);
John Stultza28cde82011-08-10 12:30:21 -0700209 alarm->state |= ALARMTIMER_STATE_ENQUEUED;
John Stultzff3ead92011-01-11 09:42:13 -0800210 }
John Stultzff3ead92011-01-11 09:42:13 -0800211 }
212
213 if (next) {
John Stultz7068b7a2011-04-28 13:29:18 -0700214 hrtimer_set_expires(&base->timer, next->expires);
215 ret = HRTIMER_RESTART;
John Stultzff3ead92011-01-11 09:42:13 -0800216 }
217 spin_unlock_irqrestore(&base->lock, flags);
John Stultzff3ead92011-01-11 09:42:13 -0800218
John Stultz7068b7a2011-04-28 13:29:18 -0700219 return ret;
John Stultzff3ead92011-01-11 09:42:13 -0800220
John Stultzff3ead92011-01-11 09:42:13 -0800221}
222
John Stultz472647d2011-04-29 15:03:10 -0700223#ifdef CONFIG_RTC_CLASS
John Stultz180bf812011-04-28 12:58:11 -0700224/**
John Stultzff3ead92011-01-11 09:42:13 -0800225 * alarmtimer_suspend - Suspend time callback
226 * @dev: unused
227 * @state: unused
228 *
229 * When we are going into suspend, we look through the bases
230 * to see which is the soonest timer to expire. We then
231 * set an rtc timer to fire that far into the future, which
232 * will wake us from suspend.
233 */
234static int alarmtimer_suspend(struct device *dev)
235{
236 struct rtc_time tm;
237 ktime_t min, now;
238 unsigned long flags;
John Stultzc008ba582011-06-16 18:27:09 -0700239 struct rtc_device *rtc;
John Stultzff3ead92011-01-11 09:42:13 -0800240 int i;
241
242 spin_lock_irqsave(&freezer_delta_lock, flags);
243 min = freezer_delta;
244 freezer_delta = ktime_set(0, 0);
245 spin_unlock_irqrestore(&freezer_delta_lock, flags);
246
John Stultz8bc0daf2011-07-14 18:35:13 -0700247 rtc = alarmtimer_get_rtcdev();
John Stultzff3ead92011-01-11 09:42:13 -0800248 /* If we have no rtcdev, just return */
John Stultzc008ba582011-06-16 18:27:09 -0700249 if (!rtc)
John Stultzff3ead92011-01-11 09:42:13 -0800250 return 0;
251
252 /* Find the soonest timer to expire*/
253 for (i = 0; i < ALARM_NUMTYPE; i++) {
254 struct alarm_base *base = &alarm_bases[i];
255 struct timerqueue_node *next;
256 ktime_t delta;
257
258 spin_lock_irqsave(&base->lock, flags);
259 next = timerqueue_getnext(&base->timerqueue);
260 spin_unlock_irqrestore(&base->lock, flags);
261 if (!next)
262 continue;
263 delta = ktime_sub(next->expires, base->gettime());
264 if (!min.tv64 || (delta.tv64 < min.tv64))
265 min = delta;
266 }
267 if (min.tv64 == 0)
268 return 0;
269
270 /* XXX - Should we enforce a minimum sleep time? */
271 WARN_ON(min.tv64 < NSEC_PER_SEC);
272
273 /* Setup an rtc timer to fire that far in the future */
John Stultzc008ba582011-06-16 18:27:09 -0700274 rtc_timer_cancel(rtc, &rtctimer);
275 rtc_read_time(rtc, &tm);
John Stultzff3ead92011-01-11 09:42:13 -0800276 now = rtc_tm_to_ktime(tm);
277 now = ktime_add(now, min);
278
John Stultzc008ba582011-06-16 18:27:09 -0700279 rtc_timer_start(rtc, &rtctimer, now, ktime_set(0, 0));
John Stultzff3ead92011-01-11 09:42:13 -0800280
281 return 0;
282}
John Stultz472647d2011-04-29 15:03:10 -0700283#else
284static int alarmtimer_suspend(struct device *dev)
285{
286 return 0;
287}
288#endif
John Stultzff3ead92011-01-11 09:42:13 -0800289
John Stultz9a7adcf2011-01-11 09:54:33 -0800290static void alarmtimer_freezerset(ktime_t absexp, enum alarmtimer_type type)
291{
292 ktime_t delta;
293 unsigned long flags;
294 struct alarm_base *base = &alarm_bases[type];
295
296 delta = ktime_sub(absexp, base->gettime());
297
298 spin_lock_irqsave(&freezer_delta_lock, flags);
299 if (!freezer_delta.tv64 || (delta.tv64 < freezer_delta.tv64))
300 freezer_delta = delta;
301 spin_unlock_irqrestore(&freezer_delta_lock, flags);
302}
303
304
John Stultz180bf812011-04-28 12:58:11 -0700305/**
John Stultzff3ead92011-01-11 09:42:13 -0800306 * alarm_init - Initialize an alarm structure
307 * @alarm: ptr to alarm to be initialized
308 * @type: the type of the alarm
309 * @function: callback that is run when the alarm fires
John Stultzff3ead92011-01-11 09:42:13 -0800310 */
311void alarm_init(struct alarm *alarm, enum alarmtimer_type type,
John Stultz4b413082011-08-10 10:37:59 -0700312 enum alarmtimer_restart (*function)(struct alarm *, ktime_t))
John Stultzff3ead92011-01-11 09:42:13 -0800313{
314 timerqueue_init(&alarm->node);
John Stultzff3ead92011-01-11 09:42:13 -0800315 alarm->function = function;
316 alarm->type = type;
John Stultza28cde82011-08-10 12:30:21 -0700317 alarm->state = ALARMTIMER_STATE_INACTIVE;
John Stultzff3ead92011-01-11 09:42:13 -0800318}
319
John Stultz180bf812011-04-28 12:58:11 -0700320/**
John Stultzff3ead92011-01-11 09:42:13 -0800321 * alarm_start - Sets an alarm to fire
322 * @alarm: ptr to alarm to set
323 * @start: time to run the alarm
John Stultzff3ead92011-01-11 09:42:13 -0800324 */
John Stultz9e264762011-08-10 12:09:24 -0700325void alarm_start(struct alarm *alarm, ktime_t start)
John Stultzff3ead92011-01-11 09:42:13 -0800326{
327 struct alarm_base *base = &alarm_bases[alarm->type];
328 unsigned long flags;
329
330 spin_lock_irqsave(&base->lock, flags);
John Stultza28cde82011-08-10 12:30:21 -0700331 if (alarmtimer_active(alarm))
John Stultzff3ead92011-01-11 09:42:13 -0800332 alarmtimer_remove(base, alarm);
333 alarm->node.expires = start;
John Stultzff3ead92011-01-11 09:42:13 -0800334 alarmtimer_enqueue(base, alarm);
John Stultzff3ead92011-01-11 09:42:13 -0800335 spin_unlock_irqrestore(&base->lock, flags);
336}
337
John Stultz180bf812011-04-28 12:58:11 -0700338/**
John Stultz9082c462011-08-10 12:41:36 -0700339 * alarm_try_to_cancel - Tries to cancel an alarm timer
John Stultzff3ead92011-01-11 09:42:13 -0800340 * @alarm: ptr to alarm to be canceled
John Stultz9082c462011-08-10 12:41:36 -0700341 *
342 * Returns 1 if the timer was canceled, 0 if it was not running,
343 * and -1 if the callback was running
John Stultzff3ead92011-01-11 09:42:13 -0800344 */
John Stultz9082c462011-08-10 12:41:36 -0700345int alarm_try_to_cancel(struct alarm *alarm)
John Stultzff3ead92011-01-11 09:42:13 -0800346{
347 struct alarm_base *base = &alarm_bases[alarm->type];
348 unsigned long flags;
John Stultz9082c462011-08-10 12:41:36 -0700349 int ret = -1;
John Stultzff3ead92011-01-11 09:42:13 -0800350 spin_lock_irqsave(&base->lock, flags);
John Stultz9082c462011-08-10 12:41:36 -0700351
352 if (alarmtimer_callback_running(alarm))
353 goto out;
354
355 if (alarmtimer_is_queued(alarm)) {
John Stultzff3ead92011-01-11 09:42:13 -0800356 alarmtimer_remove(base, alarm);
John Stultz9082c462011-08-10 12:41:36 -0700357 ret = 1;
358 } else
359 ret = 0;
360out:
John Stultzff3ead92011-01-11 09:42:13 -0800361 spin_unlock_irqrestore(&base->lock, flags);
John Stultz9082c462011-08-10 12:41:36 -0700362 return ret;
John Stultzff3ead92011-01-11 09:42:13 -0800363}
364
365
John Stultz9082c462011-08-10 12:41:36 -0700366/**
367 * alarm_cancel - Spins trying to cancel an alarm timer until it is done
368 * @alarm: ptr to alarm to be canceled
369 *
370 * Returns 1 if the timer was canceled, 0 if it was not active.
371 */
372int alarm_cancel(struct alarm *alarm)
373{
374 for (;;) {
375 int ret = alarm_try_to_cancel(alarm);
376 if (ret >= 0)
377 return ret;
378 cpu_relax();
379 }
380}
381
John Stultzdce75a82011-08-10 11:31:03 -0700382
383u64 alarm_forward(struct alarm *alarm, ktime_t now, ktime_t interval)
384{
385 u64 overrun = 1;
386 ktime_t delta;
387
388 delta = ktime_sub(now, alarm->node.expires);
389
390 if (delta.tv64 < 0)
391 return 0;
392
393 if (unlikely(delta.tv64 >= interval.tv64)) {
394 s64 incr = ktime_to_ns(interval);
395
396 overrun = ktime_divns(delta, incr);
397
398 alarm->node.expires = ktime_add_ns(alarm->node.expires,
399 incr*overrun);
400
401 if (alarm->node.expires.tv64 > now.tv64)
402 return overrun;
403 /*
404 * This (and the ktime_add() below) is the
405 * correction for exact:
406 */
407 overrun++;
408 }
409
410 alarm->node.expires = ktime_add(alarm->node.expires, interval);
411 return overrun;
412}
413
414
415
416
John Stultz180bf812011-04-28 12:58:11 -0700417/**
John Stultz9a7adcf2011-01-11 09:54:33 -0800418 * clock2alarm - helper that converts from clockid to alarmtypes
419 * @clockid: clockid.
John Stultz9a7adcf2011-01-11 09:54:33 -0800420 */
421static enum alarmtimer_type clock2alarm(clockid_t clockid)
422{
423 if (clockid == CLOCK_REALTIME_ALARM)
424 return ALARM_REALTIME;
425 if (clockid == CLOCK_BOOTTIME_ALARM)
426 return ALARM_BOOTTIME;
427 return -1;
428}
429
John Stultz180bf812011-04-28 12:58:11 -0700430/**
John Stultz9a7adcf2011-01-11 09:54:33 -0800431 * alarm_handle_timer - Callback for posix timers
432 * @alarm: alarm that fired
433 *
434 * Posix timer callback for expired alarm timers.
435 */
John Stultz4b413082011-08-10 10:37:59 -0700436static enum alarmtimer_restart alarm_handle_timer(struct alarm *alarm,
437 ktime_t now)
John Stultz9a7adcf2011-01-11 09:54:33 -0800438{
439 struct k_itimer *ptr = container_of(alarm, struct k_itimer,
John Stultz9e264762011-08-10 12:09:24 -0700440 it.alarm.alarmtimer);
John Stultz9a7adcf2011-01-11 09:54:33 -0800441 if (posix_timer_event(ptr, 0) != 0)
442 ptr->it_overrun++;
John Stultz4b413082011-08-10 10:37:59 -0700443
John Stultz54da23b2011-08-10 11:08:07 -0700444 /* Re-add periodic timers */
John Stultz9e264762011-08-10 12:09:24 -0700445 if (ptr->it.alarm.interval.tv64) {
446 ptr->it_overrun += alarm_forward(alarm, now,
447 ptr->it.alarm.interval);
John Stultz54da23b2011-08-10 11:08:07 -0700448 return ALARMTIMER_RESTART;
449 }
John Stultz4b413082011-08-10 10:37:59 -0700450 return ALARMTIMER_NORESTART;
John Stultz9a7adcf2011-01-11 09:54:33 -0800451}
452
John Stultz180bf812011-04-28 12:58:11 -0700453/**
John Stultz9a7adcf2011-01-11 09:54:33 -0800454 * alarm_clock_getres - posix getres interface
455 * @which_clock: clockid
456 * @tp: timespec to fill
457 *
458 * Returns the granularity of underlying alarm base clock
459 */
460static int alarm_clock_getres(const clockid_t which_clock, struct timespec *tp)
461{
462 clockid_t baseid = alarm_bases[clock2alarm(which_clock)].base_clockid;
463
John Stultz1c6b39a2011-06-16 18:47:37 -0700464 if (!alarmtimer_get_rtcdev())
465 return -ENOTSUPP;
466
John Stultz9a7adcf2011-01-11 09:54:33 -0800467 return hrtimer_get_res(baseid, tp);
468}
469
470/**
471 * alarm_clock_get - posix clock_get interface
472 * @which_clock: clockid
473 * @tp: timespec to fill.
474 *
475 * Provides the underlying alarm base time.
476 */
477static int alarm_clock_get(clockid_t which_clock, struct timespec *tp)
478{
479 struct alarm_base *base = &alarm_bases[clock2alarm(which_clock)];
480
John Stultz1c6b39a2011-06-16 18:47:37 -0700481 if (!alarmtimer_get_rtcdev())
482 return -ENOTSUPP;
483
John Stultz9a7adcf2011-01-11 09:54:33 -0800484 *tp = ktime_to_timespec(base->gettime());
485 return 0;
486}
487
488/**
489 * alarm_timer_create - posix timer_create interface
490 * @new_timer: k_itimer pointer to manage
491 *
492 * Initializes the k_itimer structure.
493 */
494static int alarm_timer_create(struct k_itimer *new_timer)
495{
496 enum alarmtimer_type type;
497 struct alarm_base *base;
498
John Stultz1c6b39a2011-06-16 18:47:37 -0700499 if (!alarmtimer_get_rtcdev())
500 return -ENOTSUPP;
501
John Stultz9a7adcf2011-01-11 09:54:33 -0800502 if (!capable(CAP_WAKE_ALARM))
503 return -EPERM;
504
505 type = clock2alarm(new_timer->it_clock);
506 base = &alarm_bases[type];
John Stultz9e264762011-08-10 12:09:24 -0700507 alarm_init(&new_timer->it.alarm.alarmtimer, type, alarm_handle_timer);
John Stultz9a7adcf2011-01-11 09:54:33 -0800508 return 0;
509}
510
511/**
512 * alarm_timer_get - posix timer_get interface
513 * @new_timer: k_itimer pointer
514 * @cur_setting: itimerspec data to fill
515 *
516 * Copies the itimerspec data out from the k_itimer
517 */
518static void alarm_timer_get(struct k_itimer *timr,
519 struct itimerspec *cur_setting)
520{
John Stultzea7802f2011-08-04 07:51:56 -0700521 memset(cur_setting, 0, sizeof(struct itimerspec));
522
John Stultz9a7adcf2011-01-11 09:54:33 -0800523 cur_setting->it_interval =
John Stultz9e264762011-08-10 12:09:24 -0700524 ktime_to_timespec(timr->it.alarm.interval);
John Stultz9a7adcf2011-01-11 09:54:33 -0800525 cur_setting->it_value =
John Stultz9e264762011-08-10 12:09:24 -0700526 ktime_to_timespec(timr->it.alarm.alarmtimer.node.expires);
John Stultz9a7adcf2011-01-11 09:54:33 -0800527 return;
528}
529
530/**
531 * alarm_timer_del - posix timer_del interface
532 * @timr: k_itimer pointer to be deleted
533 *
534 * Cancels any programmed alarms for the given timer.
535 */
536static int alarm_timer_del(struct k_itimer *timr)
537{
John Stultz1c6b39a2011-06-16 18:47:37 -0700538 if (!rtcdev)
539 return -ENOTSUPP;
540
John Stultz9082c462011-08-10 12:41:36 -0700541 if (alarm_try_to_cancel(&timr->it.alarm.alarmtimer) < 0)
542 return TIMER_RETRY;
543
John Stultz9a7adcf2011-01-11 09:54:33 -0800544 return 0;
545}
546
547/**
548 * alarm_timer_set - posix timer_set interface
549 * @timr: k_itimer pointer to be deleted
550 * @flags: timer flags
551 * @new_setting: itimerspec to be used
552 * @old_setting: itimerspec being replaced
553 *
554 * Sets the timer to new_setting, and starts the timer.
555 */
556static int alarm_timer_set(struct k_itimer *timr, int flags,
557 struct itimerspec *new_setting,
558 struct itimerspec *old_setting)
559{
John Stultz1c6b39a2011-06-16 18:47:37 -0700560 if (!rtcdev)
561 return -ENOTSUPP;
562
John Stultz971c90b2011-08-04 07:25:35 -0700563 if (old_setting)
564 alarm_timer_get(timr, old_setting);
John Stultz9a7adcf2011-01-11 09:54:33 -0800565
566 /* If the timer was already set, cancel it */
John Stultz9082c462011-08-10 12:41:36 -0700567 if (alarm_try_to_cancel(&timr->it.alarm.alarmtimer) < 0)
568 return TIMER_RETRY;
John Stultz9a7adcf2011-01-11 09:54:33 -0800569
570 /* start the timer */
John Stultz9e264762011-08-10 12:09:24 -0700571 timr->it.alarm.interval = timespec_to_ktime(new_setting->it_interval);
572 alarm_start(&timr->it.alarm.alarmtimer,
573 timespec_to_ktime(new_setting->it_value));
John Stultz9a7adcf2011-01-11 09:54:33 -0800574 return 0;
575}
576
577/**
578 * alarmtimer_nsleep_wakeup - Wakeup function for alarm_timer_nsleep
579 * @alarm: ptr to alarm that fired
580 *
581 * Wakes up the task that set the alarmtimer
582 */
John Stultz4b413082011-08-10 10:37:59 -0700583static enum alarmtimer_restart alarmtimer_nsleep_wakeup(struct alarm *alarm,
584 ktime_t now)
John Stultz9a7adcf2011-01-11 09:54:33 -0800585{
586 struct task_struct *task = (struct task_struct *)alarm->data;
587
588 alarm->data = NULL;
589 if (task)
590 wake_up_process(task);
John Stultz4b413082011-08-10 10:37:59 -0700591 return ALARMTIMER_NORESTART;
John Stultz9a7adcf2011-01-11 09:54:33 -0800592}
593
594/**
595 * alarmtimer_do_nsleep - Internal alarmtimer nsleep implementation
596 * @alarm: ptr to alarmtimer
597 * @absexp: absolute expiration time
598 *
599 * Sets the alarm timer and sleeps until it is fired or interrupted.
600 */
601static int alarmtimer_do_nsleep(struct alarm *alarm, ktime_t absexp)
602{
603 alarm->data = (void *)current;
604 do {
605 set_current_state(TASK_INTERRUPTIBLE);
John Stultz9e264762011-08-10 12:09:24 -0700606 alarm_start(alarm, absexp);
John Stultz9a7adcf2011-01-11 09:54:33 -0800607 if (likely(alarm->data))
608 schedule();
609
610 alarm_cancel(alarm);
611 } while (alarm->data && !signal_pending(current));
612
613 __set_current_state(TASK_RUNNING);
614
615 return (alarm->data == NULL);
616}
617
618
619/**
620 * update_rmtp - Update remaining timespec value
621 * @exp: expiration time
622 * @type: timer type
623 * @rmtp: user pointer to remaining timepsec value
624 *
625 * Helper function that fills in rmtp value with time between
626 * now and the exp value
627 */
628static int update_rmtp(ktime_t exp, enum alarmtimer_type type,
629 struct timespec __user *rmtp)
630{
631 struct timespec rmt;
632 ktime_t rem;
633
634 rem = ktime_sub(exp, alarm_bases[type].gettime());
635
636 if (rem.tv64 <= 0)
637 return 0;
638 rmt = ktime_to_timespec(rem);
639
640 if (copy_to_user(rmtp, &rmt, sizeof(*rmtp)))
641 return -EFAULT;
642
643 return 1;
644
645}
646
647/**
648 * alarm_timer_nsleep_restart - restartblock alarmtimer nsleep
649 * @restart: ptr to restart block
650 *
651 * Handles restarted clock_nanosleep calls
652 */
653static long __sched alarm_timer_nsleep_restart(struct restart_block *restart)
654{
Thomas Gleixnerab8177b2011-05-20 13:05:15 +0200655 enum alarmtimer_type type = restart->nanosleep.clockid;
John Stultz9a7adcf2011-01-11 09:54:33 -0800656 ktime_t exp;
657 struct timespec __user *rmtp;
658 struct alarm alarm;
659 int ret = 0;
660
661 exp.tv64 = restart->nanosleep.expires;
662 alarm_init(&alarm, type, alarmtimer_nsleep_wakeup);
663
664 if (alarmtimer_do_nsleep(&alarm, exp))
665 goto out;
666
667 if (freezing(current))
668 alarmtimer_freezerset(exp, type);
669
670 rmtp = restart->nanosleep.rmtp;
671 if (rmtp) {
672 ret = update_rmtp(exp, type, rmtp);
673 if (ret <= 0)
674 goto out;
675 }
676
677
678 /* The other values in restart are already filled in */
679 ret = -ERESTART_RESTARTBLOCK;
680out:
681 return ret;
682}
683
684/**
685 * alarm_timer_nsleep - alarmtimer nanosleep
686 * @which_clock: clockid
687 * @flags: determins abstime or relative
688 * @tsreq: requested sleep time (abs or rel)
689 * @rmtp: remaining sleep time saved
690 *
691 * Handles clock_nanosleep calls against _ALARM clockids
692 */
693static int alarm_timer_nsleep(const clockid_t which_clock, int flags,
694 struct timespec *tsreq, struct timespec __user *rmtp)
695{
696 enum alarmtimer_type type = clock2alarm(which_clock);
697 struct alarm alarm;
698 ktime_t exp;
699 int ret = 0;
700 struct restart_block *restart;
701
John Stultz1c6b39a2011-06-16 18:47:37 -0700702 if (!alarmtimer_get_rtcdev())
703 return -ENOTSUPP;
704
John Stultz9a7adcf2011-01-11 09:54:33 -0800705 if (!capable(CAP_WAKE_ALARM))
706 return -EPERM;
707
708 alarm_init(&alarm, type, alarmtimer_nsleep_wakeup);
709
710 exp = timespec_to_ktime(*tsreq);
711 /* Convert (if necessary) to absolute time */
712 if (flags != TIMER_ABSTIME) {
713 ktime_t now = alarm_bases[type].gettime();
714 exp = ktime_add(now, exp);
715 }
716
717 if (alarmtimer_do_nsleep(&alarm, exp))
718 goto out;
719
720 if (freezing(current))
721 alarmtimer_freezerset(exp, type);
722
723 /* abs timers don't set remaining time or restart */
724 if (flags == TIMER_ABSTIME) {
725 ret = -ERESTARTNOHAND;
726 goto out;
727 }
728
729 if (rmtp) {
730 ret = update_rmtp(exp, type, rmtp);
731 if (ret <= 0)
732 goto out;
733 }
734
735 restart = &current_thread_info()->restart_block;
736 restart->fn = alarm_timer_nsleep_restart;
Thomas Gleixnerab8177b2011-05-20 13:05:15 +0200737 restart->nanosleep.clockid = type;
John Stultz9a7adcf2011-01-11 09:54:33 -0800738 restart->nanosleep.expires = exp.tv64;
739 restart->nanosleep.rmtp = rmtp;
740 ret = -ERESTART_RESTARTBLOCK;
741
742out:
743 return ret;
744}
John Stultzff3ead92011-01-11 09:42:13 -0800745
John Stultzff3ead92011-01-11 09:42:13 -0800746
747/* Suspend hook structures */
748static const struct dev_pm_ops alarmtimer_pm_ops = {
749 .suspend = alarmtimer_suspend,
750};
751
752static struct platform_driver alarmtimer_driver = {
753 .driver = {
754 .name = "alarmtimer",
755 .pm = &alarmtimer_pm_ops,
756 }
757};
758
759/**
760 * alarmtimer_init - Initialize alarm timer code
761 *
762 * This function initializes the alarm bases and registers
763 * the posix clock ids.
764 */
765static int __init alarmtimer_init(void)
766{
767 int error = 0;
768 int i;
John Stultz9a7adcf2011-01-11 09:54:33 -0800769 struct k_clock alarm_clock = {
770 .clock_getres = alarm_clock_getres,
771 .clock_get = alarm_clock_get,
772 .timer_create = alarm_timer_create,
773 .timer_set = alarm_timer_set,
774 .timer_del = alarm_timer_del,
775 .timer_get = alarm_timer_get,
776 .nsleep = alarm_timer_nsleep,
777 };
778
779 posix_timers_register_clock(CLOCK_REALTIME_ALARM, &alarm_clock);
780 posix_timers_register_clock(CLOCK_BOOTTIME_ALARM, &alarm_clock);
John Stultzff3ead92011-01-11 09:42:13 -0800781
782 /* Initialize alarm bases */
783 alarm_bases[ALARM_REALTIME].base_clockid = CLOCK_REALTIME;
784 alarm_bases[ALARM_REALTIME].gettime = &ktime_get_real;
785 alarm_bases[ALARM_BOOTTIME].base_clockid = CLOCK_BOOTTIME;
786 alarm_bases[ALARM_BOOTTIME].gettime = &ktime_get_boottime;
787 for (i = 0; i < ALARM_NUMTYPE; i++) {
788 timerqueue_init_head(&alarm_bases[i].timerqueue);
789 spin_lock_init(&alarm_bases[i].lock);
790 hrtimer_init(&alarm_bases[i].timer,
791 alarm_bases[i].base_clockid,
792 HRTIMER_MODE_ABS);
793 alarm_bases[i].timer.function = alarmtimer_fired;
John Stultzff3ead92011-01-11 09:42:13 -0800794 }
John Stultz8bc0daf2011-07-14 18:35:13 -0700795
796 alarmtimer_rtc_interface_setup();
John Stultzff3ead92011-01-11 09:42:13 -0800797 error = platform_driver_register(&alarmtimer_driver);
798 platform_device_register_simple("alarmtimer", -1, NULL, 0);
799
800 return error;
801}
802device_initcall(alarmtimer_init);
803