blob: f03b04291b6fde23a7c529093eea08d5e3a2d44d [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 Stultzc008ba52011-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 Stultzc008ba52011-06-16 18:27:09 -070053static DEFINE_SPINLOCK(rtcdev_lock);
John Stultzff3ead92011-01-11 09:42:13 -080054
John Stultzc008ba52011-06-16 18:27:09 -070055/**
56 * has_wakealarm - check rtc device has wakealarm ability
57 * @dev: current device
58 * @name_ptr: name to be returned
59 *
60 * This helper function checks to see if the rtc device can wake
61 * from suspend.
62 */
63static int has_wakealarm(struct device *dev, void *name_ptr)
64{
65 struct rtc_device *candidate = to_rtc_device(dev);
66
67 if (!candidate->ops->set_alarm)
68 return 0;
69 if (!device_may_wakeup(candidate->dev.parent))
70 return 0;
71
72 *(const char **)name_ptr = dev_name(dev);
73 return 1;
74}
75
76/**
77 * alarmtimer_get_rtcdev - Return selected rtcdevice
78 *
79 * This function returns the rtc device to use for wakealarms.
80 * If one has not already been chosen, it checks to see if a
81 * functional rtc device is available.
82 */
83static struct rtc_device *alarmtimer_get_rtcdev(void)
84{
85 struct device *dev;
86 char *str;
87 unsigned long flags;
88 struct rtc_device *ret;
89
90 spin_lock_irqsave(&rtcdev_lock, flags);
91 if (!rtcdev) {
92 /* Find an rtc device and init the rtc_timer */
93 dev = class_find_device(rtc_class, NULL, &str, has_wakealarm);
94 /* If we have a device then str is valid. See has_wakealarm() */
95 if (dev) {
96 rtcdev = rtc_class_open(str);
97 /*
98 * Drop the reference we got in class_find_device,
99 * rtc_open takes its own.
100 */
101 put_device(dev);
102 rtc_timer_init(&rtctimer, NULL, NULL);
103 }
104 }
105 ret = rtcdev;
106 spin_unlock_irqrestore(&rtcdev_lock, flags);
107
108 return ret;
109}
John Stultz1c6b39a2011-06-16 18:47:37 -0700110#else
111#define alarmtimer_get_rtcdev() (0)
112#define rtcdev (0)
John Stultzc008ba52011-06-16 18:27:09 -0700113#endif
John Stultzff3ead92011-01-11 09:42:13 -0800114
115
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);
129 if (&alarm->node == timerqueue_getnext(&base->timerqueue)) {
130 hrtimer_try_to_cancel(&base->timer);
131 hrtimer_start(&base->timer, alarm->node.expires,
132 HRTIMER_MODE_ABS);
133 }
134}
135
John Stultz180bf812011-04-28 12:58:11 -0700136/**
John Stultzff3ead92011-01-11 09:42:13 -0800137 * alarmtimer_remove - Removes an alarm timer from an alarm_base timerqueue
138 * @base: pointer to the base where the timer is running
139 * @alarm: pointer to alarm being removed
140 *
141 * Removes alarm to a alarm_base timerqueue and if necessary sets
142 * a new timer to run.
143 *
144 * Must hold base->lock when calling.
145 */
146static void alarmtimer_remove(struct alarm_base *base, struct alarm *alarm)
147{
148 struct timerqueue_node *next = timerqueue_getnext(&base->timerqueue);
149
150 timerqueue_del(&base->timerqueue, &alarm->node);
151 if (next == &alarm->node) {
152 hrtimer_try_to_cancel(&base->timer);
153 next = timerqueue_getnext(&base->timerqueue);
154 if (!next)
155 return;
156 hrtimer_start(&base->timer, next->expires, HRTIMER_MODE_ABS);
157 }
158}
159
John Stultz7068b7a2011-04-28 13:29:18 -0700160
John Stultz180bf812011-04-28 12:58:11 -0700161/**
John Stultz7068b7a2011-04-28 13:29:18 -0700162 * alarmtimer_fired - Handles alarm hrtimer being fired.
163 * @timer: pointer to hrtimer being run
John Stultzff3ead92011-01-11 09:42:13 -0800164 *
John Stultz180bf812011-04-28 12:58:11 -0700165 * When a alarm timer fires, this runs through the timerqueue to
166 * see which alarms expired, and runs those. If there are more alarm
167 * timers queued for the future, we set the hrtimer to fire when
168 * when the next future alarm timer expires.
John Stultzff3ead92011-01-11 09:42:13 -0800169 */
John Stultz7068b7a2011-04-28 13:29:18 -0700170static enum hrtimer_restart alarmtimer_fired(struct hrtimer *timer)
John Stultzff3ead92011-01-11 09:42:13 -0800171{
John Stultz7068b7a2011-04-28 13:29:18 -0700172 struct alarm_base *base = container_of(timer, struct alarm_base, timer);
John Stultzff3ead92011-01-11 09:42:13 -0800173 struct timerqueue_node *next;
174 unsigned long flags;
175 ktime_t now;
John Stultz7068b7a2011-04-28 13:29:18 -0700176 int ret = HRTIMER_NORESTART;
John Stultz54da23b2011-08-10 11:08:07 -0700177 int restart = ALARMTIMER_NORESTART;
John Stultzff3ead92011-01-11 09:42:13 -0800178
179 spin_lock_irqsave(&base->lock, flags);
180 now = base->gettime();
181 while ((next = timerqueue_getnext(&base->timerqueue))) {
182 struct alarm *alarm;
183 ktime_t expired = next->expires;
184
185 if (expired.tv64 >= now.tv64)
186 break;
187
188 alarm = container_of(next, struct alarm, node);
189
190 timerqueue_del(&base->timerqueue, &alarm->node);
191 alarm->enabled = 0;
John Stultz54da23b2011-08-10 11:08:07 -0700192
193 spin_unlock_irqrestore(&base->lock, flags);
194 if (alarm->function)
195 restart = alarm->function(alarm, now);
196 spin_lock_irqsave(&base->lock, flags);
197
198 if (restart != ALARMTIMER_NORESTART) {
John Stultzff3ead92011-01-11 09:42:13 -0800199 timerqueue_add(&base->timerqueue, &alarm->node);
200 alarm->enabled = 1;
201 }
John Stultzff3ead92011-01-11 09:42:13 -0800202 }
203
204 if (next) {
John Stultz7068b7a2011-04-28 13:29:18 -0700205 hrtimer_set_expires(&base->timer, next->expires);
206 ret = HRTIMER_RESTART;
John Stultzff3ead92011-01-11 09:42:13 -0800207 }
208 spin_unlock_irqrestore(&base->lock, flags);
John Stultzff3ead92011-01-11 09:42:13 -0800209
John Stultz7068b7a2011-04-28 13:29:18 -0700210 return ret;
John Stultzff3ead92011-01-11 09:42:13 -0800211
John Stultzff3ead92011-01-11 09:42:13 -0800212}
213
John Stultz472647d2011-04-29 15:03:10 -0700214#ifdef CONFIG_RTC_CLASS
John Stultz180bf812011-04-28 12:58:11 -0700215/**
John Stultzff3ead92011-01-11 09:42:13 -0800216 * alarmtimer_suspend - Suspend time callback
217 * @dev: unused
218 * @state: unused
219 *
220 * When we are going into suspend, we look through the bases
221 * to see which is the soonest timer to expire. We then
222 * set an rtc timer to fire that far into the future, which
223 * will wake us from suspend.
224 */
225static int alarmtimer_suspend(struct device *dev)
226{
227 struct rtc_time tm;
228 ktime_t min, now;
229 unsigned long flags;
John Stultzc008ba52011-06-16 18:27:09 -0700230 struct rtc_device *rtc;
John Stultzff3ead92011-01-11 09:42:13 -0800231 int i;
232
233 spin_lock_irqsave(&freezer_delta_lock, flags);
234 min = freezer_delta;
235 freezer_delta = ktime_set(0, 0);
236 spin_unlock_irqrestore(&freezer_delta_lock, flags);
237
John Stultz1c6b39a2011-06-16 18:47:37 -0700238 rtc = rtcdev;
John Stultzff3ead92011-01-11 09:42:13 -0800239 /* If we have no rtcdev, just return */
John Stultzc008ba52011-06-16 18:27:09 -0700240 if (!rtc)
John Stultzff3ead92011-01-11 09:42:13 -0800241 return 0;
242
243 /* Find the soonest timer to expire*/
244 for (i = 0; i < ALARM_NUMTYPE; i++) {
245 struct alarm_base *base = &alarm_bases[i];
246 struct timerqueue_node *next;
247 ktime_t delta;
248
249 spin_lock_irqsave(&base->lock, flags);
250 next = timerqueue_getnext(&base->timerqueue);
251 spin_unlock_irqrestore(&base->lock, flags);
252 if (!next)
253 continue;
254 delta = ktime_sub(next->expires, base->gettime());
255 if (!min.tv64 || (delta.tv64 < min.tv64))
256 min = delta;
257 }
258 if (min.tv64 == 0)
259 return 0;
260
261 /* XXX - Should we enforce a minimum sleep time? */
262 WARN_ON(min.tv64 < NSEC_PER_SEC);
263
264 /* Setup an rtc timer to fire that far in the future */
John Stultzc008ba52011-06-16 18:27:09 -0700265 rtc_timer_cancel(rtc, &rtctimer);
266 rtc_read_time(rtc, &tm);
John Stultzff3ead92011-01-11 09:42:13 -0800267 now = rtc_tm_to_ktime(tm);
268 now = ktime_add(now, min);
269
John Stultzc008ba52011-06-16 18:27:09 -0700270 rtc_timer_start(rtc, &rtctimer, now, ktime_set(0, 0));
John Stultzff3ead92011-01-11 09:42:13 -0800271
272 return 0;
273}
John Stultz472647d2011-04-29 15:03:10 -0700274#else
275static int alarmtimer_suspend(struct device *dev)
276{
277 return 0;
278}
279#endif
John Stultzff3ead92011-01-11 09:42:13 -0800280
John Stultz9a7adcf2011-01-11 09:54:33 -0800281static void alarmtimer_freezerset(ktime_t absexp, enum alarmtimer_type type)
282{
283 ktime_t delta;
284 unsigned long flags;
285 struct alarm_base *base = &alarm_bases[type];
286
287 delta = ktime_sub(absexp, base->gettime());
288
289 spin_lock_irqsave(&freezer_delta_lock, flags);
290 if (!freezer_delta.tv64 || (delta.tv64 < freezer_delta.tv64))
291 freezer_delta = delta;
292 spin_unlock_irqrestore(&freezer_delta_lock, flags);
293}
294
295
John Stultz180bf812011-04-28 12:58:11 -0700296/**
John Stultzff3ead92011-01-11 09:42:13 -0800297 * alarm_init - Initialize an alarm structure
298 * @alarm: ptr to alarm to be initialized
299 * @type: the type of the alarm
300 * @function: callback that is run when the alarm fires
John Stultzff3ead92011-01-11 09:42:13 -0800301 */
302void alarm_init(struct alarm *alarm, enum alarmtimer_type type,
John Stultz4b413082011-08-10 10:37:59 -0700303 enum alarmtimer_restart (*function)(struct alarm *, ktime_t))
John Stultzff3ead92011-01-11 09:42:13 -0800304{
305 timerqueue_init(&alarm->node);
306 alarm->period = ktime_set(0, 0);
307 alarm->function = function;
308 alarm->type = type;
309 alarm->enabled = 0;
310}
311
John Stultz180bf812011-04-28 12:58:11 -0700312/**
John Stultzff3ead92011-01-11 09:42:13 -0800313 * alarm_start - Sets an alarm to fire
314 * @alarm: ptr to alarm to set
315 * @start: time to run the alarm
316 * @period: period at which the alarm will recur
John Stultzff3ead92011-01-11 09:42:13 -0800317 */
318void alarm_start(struct alarm *alarm, ktime_t start, ktime_t period)
319{
320 struct alarm_base *base = &alarm_bases[alarm->type];
321 unsigned long flags;
322
323 spin_lock_irqsave(&base->lock, flags);
324 if (alarm->enabled)
325 alarmtimer_remove(base, alarm);
326 alarm->node.expires = start;
327 alarm->period = period;
328 alarmtimer_enqueue(base, alarm);
329 alarm->enabled = 1;
330 spin_unlock_irqrestore(&base->lock, flags);
331}
332
John Stultz180bf812011-04-28 12:58:11 -0700333/**
John Stultzff3ead92011-01-11 09:42:13 -0800334 * alarm_cancel - Tries to cancel an alarm timer
335 * @alarm: ptr to alarm to be canceled
John Stultzff3ead92011-01-11 09:42:13 -0800336 */
337void alarm_cancel(struct alarm *alarm)
338{
339 struct alarm_base *base = &alarm_bases[alarm->type];
340 unsigned long flags;
341
342 spin_lock_irqsave(&base->lock, flags);
343 if (alarm->enabled)
344 alarmtimer_remove(base, alarm);
345 alarm->enabled = 0;
346 spin_unlock_irqrestore(&base->lock, flags);
347}
348
349
John Stultzdce75a82011-08-10 11:31:03 -0700350
351u64 alarm_forward(struct alarm *alarm, ktime_t now, ktime_t interval)
352{
353 u64 overrun = 1;
354 ktime_t delta;
355
356 delta = ktime_sub(now, alarm->node.expires);
357
358 if (delta.tv64 < 0)
359 return 0;
360
361 if (unlikely(delta.tv64 >= interval.tv64)) {
362 s64 incr = ktime_to_ns(interval);
363
364 overrun = ktime_divns(delta, incr);
365
366 alarm->node.expires = ktime_add_ns(alarm->node.expires,
367 incr*overrun);
368
369 if (alarm->node.expires.tv64 > now.tv64)
370 return overrun;
371 /*
372 * This (and the ktime_add() below) is the
373 * correction for exact:
374 */
375 overrun++;
376 }
377
378 alarm->node.expires = ktime_add(alarm->node.expires, interval);
379 return overrun;
380}
381
382
383
384
John Stultz180bf812011-04-28 12:58:11 -0700385/**
John Stultz9a7adcf2011-01-11 09:54:33 -0800386 * clock2alarm - helper that converts from clockid to alarmtypes
387 * @clockid: clockid.
John Stultz9a7adcf2011-01-11 09:54:33 -0800388 */
389static enum alarmtimer_type clock2alarm(clockid_t clockid)
390{
391 if (clockid == CLOCK_REALTIME_ALARM)
392 return ALARM_REALTIME;
393 if (clockid == CLOCK_BOOTTIME_ALARM)
394 return ALARM_BOOTTIME;
395 return -1;
396}
397
John Stultz180bf812011-04-28 12:58:11 -0700398/**
John Stultz9a7adcf2011-01-11 09:54:33 -0800399 * alarm_handle_timer - Callback for posix timers
400 * @alarm: alarm that fired
401 *
402 * Posix timer callback for expired alarm timers.
403 */
John Stultz4b413082011-08-10 10:37:59 -0700404static enum alarmtimer_restart alarm_handle_timer(struct alarm *alarm,
405 ktime_t now)
John Stultz9a7adcf2011-01-11 09:54:33 -0800406{
407 struct k_itimer *ptr = container_of(alarm, struct k_itimer,
408 it.alarmtimer);
409 if (posix_timer_event(ptr, 0) != 0)
410 ptr->it_overrun++;
John Stultz4b413082011-08-10 10:37:59 -0700411
John Stultz54da23b2011-08-10 11:08:07 -0700412 /* Re-add periodic timers */
413 if (alarm->period.tv64) {
John Stultzdce75a82011-08-10 11:31:03 -0700414 ptr->it_overrun += alarm_forward(alarm, now, alarm->period);
John Stultz54da23b2011-08-10 11:08:07 -0700415 return ALARMTIMER_RESTART;
416 }
John Stultz4b413082011-08-10 10:37:59 -0700417 return ALARMTIMER_NORESTART;
John Stultz9a7adcf2011-01-11 09:54:33 -0800418}
419
John Stultz180bf812011-04-28 12:58:11 -0700420/**
John Stultz9a7adcf2011-01-11 09:54:33 -0800421 * alarm_clock_getres - posix getres interface
422 * @which_clock: clockid
423 * @tp: timespec to fill
424 *
425 * Returns the granularity of underlying alarm base clock
426 */
427static int alarm_clock_getres(const clockid_t which_clock, struct timespec *tp)
428{
429 clockid_t baseid = alarm_bases[clock2alarm(which_clock)].base_clockid;
430
John Stultz1c6b39a2011-06-16 18:47:37 -0700431 if (!alarmtimer_get_rtcdev())
432 return -ENOTSUPP;
433
John Stultz9a7adcf2011-01-11 09:54:33 -0800434 return hrtimer_get_res(baseid, tp);
435}
436
437/**
438 * alarm_clock_get - posix clock_get interface
439 * @which_clock: clockid
440 * @tp: timespec to fill.
441 *
442 * Provides the underlying alarm base time.
443 */
444static int alarm_clock_get(clockid_t which_clock, struct timespec *tp)
445{
446 struct alarm_base *base = &alarm_bases[clock2alarm(which_clock)];
447
John Stultz1c6b39a2011-06-16 18:47:37 -0700448 if (!alarmtimer_get_rtcdev())
449 return -ENOTSUPP;
450
John Stultz9a7adcf2011-01-11 09:54:33 -0800451 *tp = ktime_to_timespec(base->gettime());
452 return 0;
453}
454
455/**
456 * alarm_timer_create - posix timer_create interface
457 * @new_timer: k_itimer pointer to manage
458 *
459 * Initializes the k_itimer structure.
460 */
461static int alarm_timer_create(struct k_itimer *new_timer)
462{
463 enum alarmtimer_type type;
464 struct alarm_base *base;
465
John Stultz1c6b39a2011-06-16 18:47:37 -0700466 if (!alarmtimer_get_rtcdev())
467 return -ENOTSUPP;
468
John Stultz9a7adcf2011-01-11 09:54:33 -0800469 if (!capable(CAP_WAKE_ALARM))
470 return -EPERM;
471
472 type = clock2alarm(new_timer->it_clock);
473 base = &alarm_bases[type];
474 alarm_init(&new_timer->it.alarmtimer, type, alarm_handle_timer);
475 return 0;
476}
477
478/**
479 * alarm_timer_get - posix timer_get interface
480 * @new_timer: k_itimer pointer
481 * @cur_setting: itimerspec data to fill
482 *
483 * Copies the itimerspec data out from the k_itimer
484 */
485static void alarm_timer_get(struct k_itimer *timr,
486 struct itimerspec *cur_setting)
487{
John Stultzea7802f2011-08-04 07:51:56 -0700488 memset(cur_setting, 0, sizeof(struct itimerspec));
489
John Stultz9a7adcf2011-01-11 09:54:33 -0800490 cur_setting->it_interval =
491 ktime_to_timespec(timr->it.alarmtimer.period);
492 cur_setting->it_value =
493 ktime_to_timespec(timr->it.alarmtimer.node.expires);
494 return;
495}
496
497/**
498 * alarm_timer_del - posix timer_del interface
499 * @timr: k_itimer pointer to be deleted
500 *
501 * Cancels any programmed alarms for the given timer.
502 */
503static int alarm_timer_del(struct k_itimer *timr)
504{
John Stultz1c6b39a2011-06-16 18:47:37 -0700505 if (!rtcdev)
506 return -ENOTSUPP;
507
John Stultz9a7adcf2011-01-11 09:54:33 -0800508 alarm_cancel(&timr->it.alarmtimer);
509 return 0;
510}
511
512/**
513 * alarm_timer_set - posix timer_set interface
514 * @timr: k_itimer pointer to be deleted
515 * @flags: timer flags
516 * @new_setting: itimerspec to be used
517 * @old_setting: itimerspec being replaced
518 *
519 * Sets the timer to new_setting, and starts the timer.
520 */
521static int alarm_timer_set(struct k_itimer *timr, int flags,
522 struct itimerspec *new_setting,
523 struct itimerspec *old_setting)
524{
John Stultz1c6b39a2011-06-16 18:47:37 -0700525 if (!rtcdev)
526 return -ENOTSUPP;
527
John Stultz6af7e472011-08-10 10:26:09 -0700528 /*
529 * XXX HACK! Currently we can DOS a system if the interval
530 * period on alarmtimers is too small. Cap the interval here
531 * to 100us and solve this properly in a future patch! -jstultz
532 */
533 if ((new_setting->it_interval.tv_sec == 0) &&
534 (new_setting->it_interval.tv_nsec < 100000))
535 new_setting->it_interval.tv_nsec = 100000;
536
John Stultz971c90b2011-08-04 07:25:35 -0700537 if (old_setting)
538 alarm_timer_get(timr, old_setting);
John Stultz9a7adcf2011-01-11 09:54:33 -0800539
540 /* If the timer was already set, cancel it */
541 alarm_cancel(&timr->it.alarmtimer);
542
543 /* start the timer */
544 alarm_start(&timr->it.alarmtimer,
545 timespec_to_ktime(new_setting->it_value),
546 timespec_to_ktime(new_setting->it_interval));
547 return 0;
548}
549
550/**
551 * alarmtimer_nsleep_wakeup - Wakeup function for alarm_timer_nsleep
552 * @alarm: ptr to alarm that fired
553 *
554 * Wakes up the task that set the alarmtimer
555 */
John Stultz4b413082011-08-10 10:37:59 -0700556static enum alarmtimer_restart alarmtimer_nsleep_wakeup(struct alarm *alarm,
557 ktime_t now)
John Stultz9a7adcf2011-01-11 09:54:33 -0800558{
559 struct task_struct *task = (struct task_struct *)alarm->data;
560
561 alarm->data = NULL;
562 if (task)
563 wake_up_process(task);
John Stultz4b413082011-08-10 10:37:59 -0700564 return ALARMTIMER_NORESTART;
John Stultz9a7adcf2011-01-11 09:54:33 -0800565}
566
567/**
568 * alarmtimer_do_nsleep - Internal alarmtimer nsleep implementation
569 * @alarm: ptr to alarmtimer
570 * @absexp: absolute expiration time
571 *
572 * Sets the alarm timer and sleeps until it is fired or interrupted.
573 */
574static int alarmtimer_do_nsleep(struct alarm *alarm, ktime_t absexp)
575{
576 alarm->data = (void *)current;
577 do {
578 set_current_state(TASK_INTERRUPTIBLE);
579 alarm_start(alarm, absexp, ktime_set(0, 0));
580 if (likely(alarm->data))
581 schedule();
582
583 alarm_cancel(alarm);
584 } while (alarm->data && !signal_pending(current));
585
586 __set_current_state(TASK_RUNNING);
587
588 return (alarm->data == NULL);
589}
590
591
592/**
593 * update_rmtp - Update remaining timespec value
594 * @exp: expiration time
595 * @type: timer type
596 * @rmtp: user pointer to remaining timepsec value
597 *
598 * Helper function that fills in rmtp value with time between
599 * now and the exp value
600 */
601static int update_rmtp(ktime_t exp, enum alarmtimer_type type,
602 struct timespec __user *rmtp)
603{
604 struct timespec rmt;
605 ktime_t rem;
606
607 rem = ktime_sub(exp, alarm_bases[type].gettime());
608
609 if (rem.tv64 <= 0)
610 return 0;
611 rmt = ktime_to_timespec(rem);
612
613 if (copy_to_user(rmtp, &rmt, sizeof(*rmtp)))
614 return -EFAULT;
615
616 return 1;
617
618}
619
620/**
621 * alarm_timer_nsleep_restart - restartblock alarmtimer nsleep
622 * @restart: ptr to restart block
623 *
624 * Handles restarted clock_nanosleep calls
625 */
626static long __sched alarm_timer_nsleep_restart(struct restart_block *restart)
627{
Thomas Gleixnerab8177b2011-05-20 13:05:15 +0200628 enum alarmtimer_type type = restart->nanosleep.clockid;
John Stultz9a7adcf2011-01-11 09:54:33 -0800629 ktime_t exp;
630 struct timespec __user *rmtp;
631 struct alarm alarm;
632 int ret = 0;
633
634 exp.tv64 = restart->nanosleep.expires;
635 alarm_init(&alarm, type, alarmtimer_nsleep_wakeup);
636
637 if (alarmtimer_do_nsleep(&alarm, exp))
638 goto out;
639
640 if (freezing(current))
641 alarmtimer_freezerset(exp, type);
642
643 rmtp = restart->nanosleep.rmtp;
644 if (rmtp) {
645 ret = update_rmtp(exp, type, rmtp);
646 if (ret <= 0)
647 goto out;
648 }
649
650
651 /* The other values in restart are already filled in */
652 ret = -ERESTART_RESTARTBLOCK;
653out:
654 return ret;
655}
656
657/**
658 * alarm_timer_nsleep - alarmtimer nanosleep
659 * @which_clock: clockid
660 * @flags: determins abstime or relative
661 * @tsreq: requested sleep time (abs or rel)
662 * @rmtp: remaining sleep time saved
663 *
664 * Handles clock_nanosleep calls against _ALARM clockids
665 */
666static int alarm_timer_nsleep(const clockid_t which_clock, int flags,
667 struct timespec *tsreq, struct timespec __user *rmtp)
668{
669 enum alarmtimer_type type = clock2alarm(which_clock);
670 struct alarm alarm;
671 ktime_t exp;
672 int ret = 0;
673 struct restart_block *restart;
674
John Stultz1c6b39a2011-06-16 18:47:37 -0700675 if (!alarmtimer_get_rtcdev())
676 return -ENOTSUPP;
677
John Stultz9a7adcf2011-01-11 09:54:33 -0800678 if (!capable(CAP_WAKE_ALARM))
679 return -EPERM;
680
681 alarm_init(&alarm, type, alarmtimer_nsleep_wakeup);
682
683 exp = timespec_to_ktime(*tsreq);
684 /* Convert (if necessary) to absolute time */
685 if (flags != TIMER_ABSTIME) {
686 ktime_t now = alarm_bases[type].gettime();
687 exp = ktime_add(now, exp);
688 }
689
690 if (alarmtimer_do_nsleep(&alarm, exp))
691 goto out;
692
693 if (freezing(current))
694 alarmtimer_freezerset(exp, type);
695
696 /* abs timers don't set remaining time or restart */
697 if (flags == TIMER_ABSTIME) {
698 ret = -ERESTARTNOHAND;
699 goto out;
700 }
701
702 if (rmtp) {
703 ret = update_rmtp(exp, type, rmtp);
704 if (ret <= 0)
705 goto out;
706 }
707
708 restart = &current_thread_info()->restart_block;
709 restart->fn = alarm_timer_nsleep_restart;
Thomas Gleixnerab8177b2011-05-20 13:05:15 +0200710 restart->nanosleep.clockid = type;
John Stultz9a7adcf2011-01-11 09:54:33 -0800711 restart->nanosleep.expires = exp.tv64;
712 restart->nanosleep.rmtp = rmtp;
713 ret = -ERESTART_RESTARTBLOCK;
714
715out:
716 return ret;
717}
John Stultzff3ead92011-01-11 09:42:13 -0800718
John Stultzff3ead92011-01-11 09:42:13 -0800719
720/* Suspend hook structures */
721static const struct dev_pm_ops alarmtimer_pm_ops = {
722 .suspend = alarmtimer_suspend,
723};
724
725static struct platform_driver alarmtimer_driver = {
726 .driver = {
727 .name = "alarmtimer",
728 .pm = &alarmtimer_pm_ops,
729 }
730};
731
732/**
733 * alarmtimer_init - Initialize alarm timer code
734 *
735 * This function initializes the alarm bases and registers
736 * the posix clock ids.
737 */
738static int __init alarmtimer_init(void)
739{
740 int error = 0;
741 int i;
John Stultz9a7adcf2011-01-11 09:54:33 -0800742 struct k_clock alarm_clock = {
743 .clock_getres = alarm_clock_getres,
744 .clock_get = alarm_clock_get,
745 .timer_create = alarm_timer_create,
746 .timer_set = alarm_timer_set,
747 .timer_del = alarm_timer_del,
748 .timer_get = alarm_timer_get,
749 .nsleep = alarm_timer_nsleep,
750 };
751
752 posix_timers_register_clock(CLOCK_REALTIME_ALARM, &alarm_clock);
753 posix_timers_register_clock(CLOCK_BOOTTIME_ALARM, &alarm_clock);
John Stultzff3ead92011-01-11 09:42:13 -0800754
755 /* Initialize alarm bases */
756 alarm_bases[ALARM_REALTIME].base_clockid = CLOCK_REALTIME;
757 alarm_bases[ALARM_REALTIME].gettime = &ktime_get_real;
758 alarm_bases[ALARM_BOOTTIME].base_clockid = CLOCK_BOOTTIME;
759 alarm_bases[ALARM_BOOTTIME].gettime = &ktime_get_boottime;
760 for (i = 0; i < ALARM_NUMTYPE; i++) {
761 timerqueue_init_head(&alarm_bases[i].timerqueue);
762 spin_lock_init(&alarm_bases[i].lock);
763 hrtimer_init(&alarm_bases[i].timer,
764 alarm_bases[i].base_clockid,
765 HRTIMER_MODE_ABS);
766 alarm_bases[i].timer.function = alarmtimer_fired;
John Stultzff3ead92011-01-11 09:42:13 -0800767 }
768 error = platform_driver_register(&alarmtimer_driver);
769 platform_device_register_simple("alarmtimer", -1, NULL, 0);
770
771 return error;
772}
773device_initcall(alarmtimer_init);
774