]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - kernel/time/alarmtimer.c
Revert "INPUT: xpad: switch Logitech G920 Wheel into HID mode"
[mirror_ubuntu-artful-kernel.git] / kernel / time / alarmtimer.c
CommitLineData
ff3ead96
JS
1/*
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
180bf812
JS
29/**
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
180bf812 36 */
ff3ead96
JS
37static struct alarm_base {
38 spinlock_t lock;
39 struct timerqueue_head timerqueue;
ff3ead96
JS
40 ktime_t (*gettime)(void);
41 clockid_t base_clockid;
ff3ead96
JS
42} alarm_bases[ALARM_NUMTYPE];
43
c008ba58
JS
44/* freezer delta & lock used to handle clock_nanosleep triggered wakeups */
45static ktime_t freezer_delta;
46static DEFINE_SPINLOCK(freezer_delta_lock);
47
59a93c27
TP
48static struct wakeup_source *ws;
49
472647dc 50#ifdef CONFIG_RTC_CLASS
180bf812 51/* rtc timer and device for setting alarm wakeups at suspend */
c5e14e76 52static struct rtc_timer rtctimer;
ff3ead96 53static struct rtc_device *rtcdev;
c008ba58 54static DEFINE_SPINLOCK(rtcdev_lock);
ff3ead96 55
c008ba58
JS
56/**
57 * alarmtimer_get_rtcdev - Return selected rtcdevice
58 *
59 * This function returns the rtc device to use for wakealarms.
60 * If one has not already been chosen, it checks to see if a
61 * functional rtc device is available.
62 */
57c498fa 63struct rtc_device *alarmtimer_get_rtcdev(void)
c008ba58 64{
c008ba58
JS
65 unsigned long flags;
66 struct rtc_device *ret;
67
68 spin_lock_irqsave(&rtcdev_lock, flags);
c008ba58
JS
69 ret = rtcdev;
70 spin_unlock_irqrestore(&rtcdev_lock, flags);
71
72 return ret;
73}
71d5d2b7 74EXPORT_SYMBOL_GPL(alarmtimer_get_rtcdev);
8bc0dafb
JS
75
76static int alarmtimer_rtc_add_device(struct device *dev,
77 struct class_interface *class_intf)
78{
79 unsigned long flags;
80 struct rtc_device *rtc = to_rtc_device(dev);
81
82 if (rtcdev)
83 return -EBUSY;
84
85 if (!rtc->ops->set_alarm)
86 return -1;
87 if (!device_may_wakeup(rtc->dev.parent))
88 return -1;
89
90 spin_lock_irqsave(&rtcdev_lock, flags);
91 if (!rtcdev) {
92 rtcdev = rtc;
93 /* hold a reference so it doesn't go away */
94 get_device(dev);
95 }
96 spin_unlock_irqrestore(&rtcdev_lock, flags);
97 return 0;
98}
99
c5e14e76
TG
100static inline void alarmtimer_rtc_timer_init(void)
101{
102 rtc_timer_init(&rtctimer, NULL, NULL);
103}
104
8bc0dafb
JS
105static struct class_interface alarmtimer_rtc_interface = {
106 .add_dev = &alarmtimer_rtc_add_device,
107};
108
4523f6ad 109static int alarmtimer_rtc_interface_setup(void)
8bc0dafb
JS
110{
111 alarmtimer_rtc_interface.class = rtc_class;
4523f6ad
TG
112 return class_interface_register(&alarmtimer_rtc_interface);
113}
114static void alarmtimer_rtc_interface_remove(void)
115{
116 class_interface_unregister(&alarmtimer_rtc_interface);
8bc0dafb 117}
1c6b39ad 118#else
57c498fa 119struct rtc_device *alarmtimer_get_rtcdev(void)
4523f6ad
TG
120{
121 return NULL;
122}
123#define rtcdev (NULL)
124static inline int alarmtimer_rtc_interface_setup(void) { return 0; }
125static inline void alarmtimer_rtc_interface_remove(void) { }
c5e14e76 126static inline void alarmtimer_rtc_timer_init(void) { }
c008ba58 127#endif
ff3ead96 128
180bf812 129/**
ff3ead96
JS
130 * alarmtimer_enqueue - Adds an alarm timer to an alarm_base timerqueue
131 * @base: pointer to the base where the timer is being run
132 * @alarm: pointer to alarm being enqueued.
133 *
dae373be 134 * Adds alarm to a alarm_base timerqueue
ff3ead96
JS
135 *
136 * Must hold base->lock when calling.
137 */
138static void alarmtimer_enqueue(struct alarm_base *base, struct alarm *alarm)
139{
dae373be
JS
140 if (alarm->state & ALARMTIMER_STATE_ENQUEUED)
141 timerqueue_del(&base->timerqueue, &alarm->node);
142
ff3ead96 143 timerqueue_add(&base->timerqueue, &alarm->node);
a28cde81 144 alarm->state |= ALARMTIMER_STATE_ENQUEUED;
ff3ead96
JS
145}
146
180bf812 147/**
a65bcc12 148 * alarmtimer_dequeue - Removes an alarm timer from an alarm_base timerqueue
ff3ead96
JS
149 * @base: pointer to the base where the timer is running
150 * @alarm: pointer to alarm being removed
151 *
dae373be 152 * Removes alarm to a alarm_base timerqueue
ff3ead96
JS
153 *
154 * Must hold base->lock when calling.
155 */
a65bcc12 156static void alarmtimer_dequeue(struct alarm_base *base, struct alarm *alarm)
ff3ead96 157{
a28cde81
JS
158 if (!(alarm->state & ALARMTIMER_STATE_ENQUEUED))
159 return;
160
ff3ead96 161 timerqueue_del(&base->timerqueue, &alarm->node);
a28cde81 162 alarm->state &= ~ALARMTIMER_STATE_ENQUEUED;
ff3ead96
JS
163}
164
7068b7a1 165
180bf812 166/**
7068b7a1
JS
167 * alarmtimer_fired - Handles alarm hrtimer being fired.
168 * @timer: pointer to hrtimer being run
ff3ead96 169 *
180bf812
JS
170 * When a alarm timer fires, this runs through the timerqueue to
171 * see which alarms expired, and runs those. If there are more alarm
172 * timers queued for the future, we set the hrtimer to fire when
173 * when the next future alarm timer expires.
ff3ead96 174 */
7068b7a1 175static enum hrtimer_restart alarmtimer_fired(struct hrtimer *timer)
ff3ead96 176{
dae373be
JS
177 struct alarm *alarm = container_of(timer, struct alarm, timer);
178 struct alarm_base *base = &alarm_bases[alarm->type];
ff3ead96 179 unsigned long flags;
7068b7a1 180 int ret = HRTIMER_NORESTART;
54da23b7 181 int restart = ALARMTIMER_NORESTART;
ff3ead96
JS
182
183 spin_lock_irqsave(&base->lock, flags);
a65bcc12 184 alarmtimer_dequeue(base, alarm);
dae373be 185 spin_unlock_irqrestore(&base->lock, flags);
54da23b7 186
dae373be
JS
187 if (alarm->function)
188 restart = alarm->function(alarm, base->gettime());
ff3ead96 189
dae373be
JS
190 spin_lock_irqsave(&base->lock, flags);
191 if (restart != ALARMTIMER_NORESTART) {
192 hrtimer_set_expires(&alarm->timer, alarm->node.expires);
193 alarmtimer_enqueue(base, alarm);
7068b7a1 194 ret = HRTIMER_RESTART;
ff3ead96
JS
195 }
196 spin_unlock_irqrestore(&base->lock, flags);
ff3ead96 197
7068b7a1 198 return ret;
ff3ead96 199
ff3ead96
JS
200}
201
6cffe00f
TP
202ktime_t alarm_expires_remaining(const struct alarm *alarm)
203{
204 struct alarm_base *base = &alarm_bases[alarm->type];
205 return ktime_sub(alarm->node.expires, base->gettime());
206}
11682a41 207EXPORT_SYMBOL_GPL(alarm_expires_remaining);
6cffe00f 208
472647dc 209#ifdef CONFIG_RTC_CLASS
180bf812 210/**
ff3ead96
JS
211 * alarmtimer_suspend - Suspend time callback
212 * @dev: unused
213 * @state: unused
214 *
215 * When we are going into suspend, we look through the bases
216 * to see which is the soonest timer to expire. We then
217 * set an rtc timer to fire that far into the future, which
218 * will wake us from suspend.
219 */
220static int alarmtimer_suspend(struct device *dev)
221{
222 struct rtc_time tm;
223 ktime_t min, now;
224 unsigned long flags;
c008ba58 225 struct rtc_device *rtc;
ff3ead96 226 int i;
59a93c27 227 int ret;
ff3ead96
JS
228
229 spin_lock_irqsave(&freezer_delta_lock, flags);
230 min = freezer_delta;
231 freezer_delta = ktime_set(0, 0);
232 spin_unlock_irqrestore(&freezer_delta_lock, flags);
233
8bc0dafb 234 rtc = alarmtimer_get_rtcdev();
ff3ead96 235 /* If we have no rtcdev, just return */
c008ba58 236 if (!rtc)
ff3ead96
JS
237 return 0;
238
239 /* Find the soonest timer to expire*/
240 for (i = 0; i < ALARM_NUMTYPE; i++) {
241 struct alarm_base *base = &alarm_bases[i];
242 struct timerqueue_node *next;
243 ktime_t delta;
244
245 spin_lock_irqsave(&base->lock, flags);
246 next = timerqueue_getnext(&base->timerqueue);
247 spin_unlock_irqrestore(&base->lock, flags);
248 if (!next)
249 continue;
250 delta = ktime_sub(next->expires, base->gettime());
251 if (!min.tv64 || (delta.tv64 < min.tv64))
252 min = delta;
253 }
254 if (min.tv64 == 0)
255 return 0;
256
59a93c27
TP
257 if (ktime_to_ns(min) < 2 * NSEC_PER_SEC) {
258 __pm_wakeup_event(ws, 2 * MSEC_PER_SEC);
259 return -EBUSY;
260 }
ff3ead96
JS
261
262 /* Setup an rtc timer to fire that far in the future */
c008ba58
JS
263 rtc_timer_cancel(rtc, &rtctimer);
264 rtc_read_time(rtc, &tm);
ff3ead96
JS
265 now = rtc_tm_to_ktime(tm);
266 now = ktime_add(now, min);
267
59a93c27
TP
268 /* Set alarm, if in the past reject suspend briefly to handle */
269 ret = rtc_timer_start(rtc, &rtctimer, now, ktime_set(0, 0));
270 if (ret < 0)
271 __pm_wakeup_event(ws, MSEC_PER_SEC);
272 return ret;
ff3ead96 273}
472647dc
JS
274#else
275static int alarmtimer_suspend(struct device *dev)
276{
277 return 0;
278}
279#endif
ff3ead96 280
9a7adcf5
JS
281static 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
180bf812 296/**
ff3ead96
JS
297 * 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
ff3ead96
JS
301 */
302void alarm_init(struct alarm *alarm, enum alarmtimer_type type,
4b41308d 303 enum alarmtimer_restart (*function)(struct alarm *, ktime_t))
ff3ead96
JS
304{
305 timerqueue_init(&alarm->node);
dae373be
JS
306 hrtimer_init(&alarm->timer, alarm_bases[type].base_clockid,
307 HRTIMER_MODE_ABS);
308 alarm->timer.function = alarmtimer_fired;
ff3ead96
JS
309 alarm->function = function;
310 alarm->type = type;
a28cde81 311 alarm->state = ALARMTIMER_STATE_INACTIVE;
ff3ead96 312}
11682a41 313EXPORT_SYMBOL_GPL(alarm_init);
ff3ead96 314
180bf812 315/**
6cffe00f 316 * alarm_start - Sets an absolute alarm to fire
ff3ead96
JS
317 * @alarm: ptr to alarm to set
318 * @start: time to run the alarm
ff3ead96 319 */
b193217e 320void alarm_start(struct alarm *alarm, ktime_t start)
ff3ead96
JS
321{
322 struct alarm_base *base = &alarm_bases[alarm->type];
323 unsigned long flags;
324
325 spin_lock_irqsave(&base->lock, flags);
ff3ead96 326 alarm->node.expires = start;
ff3ead96 327 alarmtimer_enqueue(base, alarm);
b193217e 328 hrtimer_start(&alarm->timer, alarm->node.expires, HRTIMER_MODE_ABS);
ff3ead96
JS
329 spin_unlock_irqrestore(&base->lock, flags);
330}
11682a41 331EXPORT_SYMBOL_GPL(alarm_start);
ff3ead96 332
6cffe00f
TP
333/**
334 * alarm_start_relative - Sets a relative alarm to fire
335 * @alarm: ptr to alarm to set
336 * @start: time relative to now to run the alarm
337 */
b193217e 338void alarm_start_relative(struct alarm *alarm, ktime_t start)
6cffe00f
TP
339{
340 struct alarm_base *base = &alarm_bases[alarm->type];
341
342 start = ktime_add(start, base->gettime());
b193217e 343 alarm_start(alarm, start);
6cffe00f 344}
11682a41 345EXPORT_SYMBOL_GPL(alarm_start_relative);
6cffe00f
TP
346
347void alarm_restart(struct alarm *alarm)
348{
349 struct alarm_base *base = &alarm_bases[alarm->type];
350 unsigned long flags;
351
352 spin_lock_irqsave(&base->lock, flags);
353 hrtimer_set_expires(&alarm->timer, alarm->node.expires);
354 hrtimer_restart(&alarm->timer);
355 alarmtimer_enqueue(base, alarm);
356 spin_unlock_irqrestore(&base->lock, flags);
357}
11682a41 358EXPORT_SYMBOL_GPL(alarm_restart);
6cffe00f 359
180bf812 360/**
9082c465 361 * alarm_try_to_cancel - Tries to cancel an alarm timer
ff3ead96 362 * @alarm: ptr to alarm to be canceled
9082c465
JS
363 *
364 * Returns 1 if the timer was canceled, 0 if it was not running,
365 * and -1 if the callback was running
ff3ead96 366 */
9082c465 367int alarm_try_to_cancel(struct alarm *alarm)
ff3ead96
JS
368{
369 struct alarm_base *base = &alarm_bases[alarm->type];
370 unsigned long flags;
dae373be 371 int ret;
9082c465 372
dae373be
JS
373 spin_lock_irqsave(&base->lock, flags);
374 ret = hrtimer_try_to_cancel(&alarm->timer);
375 if (ret >= 0)
a65bcc12 376 alarmtimer_dequeue(base, alarm);
ff3ead96 377 spin_unlock_irqrestore(&base->lock, flags);
9082c465 378 return ret;
ff3ead96 379}
11682a41 380EXPORT_SYMBOL_GPL(alarm_try_to_cancel);
ff3ead96
JS
381
382
9082c465
JS
383/**
384 * alarm_cancel - Spins trying to cancel an alarm timer until it is done
385 * @alarm: ptr to alarm to be canceled
386 *
387 * Returns 1 if the timer was canceled, 0 if it was not active.
388 */
389int alarm_cancel(struct alarm *alarm)
390{
391 for (;;) {
392 int ret = alarm_try_to_cancel(alarm);
393 if (ret >= 0)
394 return ret;
395 cpu_relax();
396 }
397}
11682a41 398EXPORT_SYMBOL_GPL(alarm_cancel);
9082c465 399
dce75a8c
JS
400
401u64 alarm_forward(struct alarm *alarm, ktime_t now, ktime_t interval)
402{
403 u64 overrun = 1;
404 ktime_t delta;
405
406 delta = ktime_sub(now, alarm->node.expires);
407
408 if (delta.tv64 < 0)
409 return 0;
410
411 if (unlikely(delta.tv64 >= interval.tv64)) {
412 s64 incr = ktime_to_ns(interval);
413
414 overrun = ktime_divns(delta, incr);
415
416 alarm->node.expires = ktime_add_ns(alarm->node.expires,
417 incr*overrun);
418
419 if (alarm->node.expires.tv64 > now.tv64)
420 return overrun;
421 /*
422 * This (and the ktime_add() below) is the
423 * correction for exact:
424 */
425 overrun++;
426 }
427
428 alarm->node.expires = ktime_add(alarm->node.expires, interval);
429 return overrun;
430}
11682a41 431EXPORT_SYMBOL_GPL(alarm_forward);
dce75a8c 432
6cffe00f
TP
433u64 alarm_forward_now(struct alarm *alarm, ktime_t interval)
434{
435 struct alarm_base *base = &alarm_bases[alarm->type];
436
437 return alarm_forward(alarm, base->gettime(), interval);
438}
11682a41 439EXPORT_SYMBOL_GPL(alarm_forward_now);
dce75a8c
JS
440
441
180bf812 442/**
9a7adcf5
JS
443 * clock2alarm - helper that converts from clockid to alarmtypes
444 * @clockid: clockid.
9a7adcf5
JS
445 */
446static enum alarmtimer_type clock2alarm(clockid_t clockid)
447{
448 if (clockid == CLOCK_REALTIME_ALARM)
449 return ALARM_REALTIME;
450 if (clockid == CLOCK_BOOTTIME_ALARM)
451 return ALARM_BOOTTIME;
452 return -1;
453}
454
180bf812 455/**
9a7adcf5
JS
456 * alarm_handle_timer - Callback for posix timers
457 * @alarm: alarm that fired
458 *
459 * Posix timer callback for expired alarm timers.
460 */
4b41308d
JS
461static enum alarmtimer_restart alarm_handle_timer(struct alarm *alarm,
462 ktime_t now)
9a7adcf5 463{
474e941b 464 unsigned long flags;
9a7adcf5 465 struct k_itimer *ptr = container_of(alarm, struct k_itimer,
9e264762 466 it.alarm.alarmtimer);
474e941b
RL
467 enum alarmtimer_restart result = ALARMTIMER_NORESTART;
468
469 spin_lock_irqsave(&ptr->it_lock, flags);
265b81d2
RL
470 if ((ptr->it_sigev_notify & ~SIGEV_THREAD_ID) != SIGEV_NONE) {
471 if (posix_timer_event(ptr, 0) != 0)
472 ptr->it_overrun++;
473 }
4b41308d 474
54da23b7 475 /* Re-add periodic timers */
9e264762
JS
476 if (ptr->it.alarm.interval.tv64) {
477 ptr->it_overrun += alarm_forward(alarm, now,
478 ptr->it.alarm.interval);
474e941b 479 result = ALARMTIMER_RESTART;
54da23b7 480 }
474e941b
RL
481 spin_unlock_irqrestore(&ptr->it_lock, flags);
482
483 return result;
9a7adcf5
JS
484}
485
180bf812 486/**
9a7adcf5
JS
487 * alarm_clock_getres - posix getres interface
488 * @which_clock: clockid
489 * @tp: timespec to fill
490 *
491 * Returns the granularity of underlying alarm base clock
492 */
493static int alarm_clock_getres(const clockid_t which_clock, struct timespec *tp)
494{
1c6b39ad 495 if (!alarmtimer_get_rtcdev())
98d6f4dd 496 return -EINVAL;
1c6b39ad 497
056a3cac
TG
498 tp->tv_sec = 0;
499 tp->tv_nsec = hrtimer_resolution;
500 return 0;
9a7adcf5
JS
501}
502
503/**
504 * alarm_clock_get - posix clock_get interface
505 * @which_clock: clockid
506 * @tp: timespec to fill.
507 *
508 * Provides the underlying alarm base time.
509 */
510static int alarm_clock_get(clockid_t which_clock, struct timespec *tp)
511{
512 struct alarm_base *base = &alarm_bases[clock2alarm(which_clock)];
513
1c6b39ad 514 if (!alarmtimer_get_rtcdev())
98d6f4dd 515 return -EINVAL;
1c6b39ad 516
9a7adcf5
JS
517 *tp = ktime_to_timespec(base->gettime());
518 return 0;
519}
520
521/**
522 * alarm_timer_create - posix timer_create interface
523 * @new_timer: k_itimer pointer to manage
524 *
525 * Initializes the k_itimer structure.
526 */
527static int alarm_timer_create(struct k_itimer *new_timer)
528{
529 enum alarmtimer_type type;
530 struct alarm_base *base;
531
1c6b39ad
JS
532 if (!alarmtimer_get_rtcdev())
533 return -ENOTSUPP;
534
9a7adcf5
JS
535 if (!capable(CAP_WAKE_ALARM))
536 return -EPERM;
537
538 type = clock2alarm(new_timer->it_clock);
539 base = &alarm_bases[type];
9e264762 540 alarm_init(&new_timer->it.alarm.alarmtimer, type, alarm_handle_timer);
9a7adcf5
JS
541 return 0;
542}
543
544/**
545 * alarm_timer_get - posix timer_get interface
546 * @new_timer: k_itimer pointer
547 * @cur_setting: itimerspec data to fill
548 *
e86fea76 549 * Copies out the current itimerspec data
9a7adcf5
JS
550 */
551static void alarm_timer_get(struct k_itimer *timr,
552 struct itimerspec *cur_setting)
553{
e86fea76
RL
554 ktime_t relative_expiry_time =
555 alarm_expires_remaining(&(timr->it.alarm.alarmtimer));
556
557 if (ktime_to_ns(relative_expiry_time) > 0) {
558 cur_setting->it_value = ktime_to_timespec(relative_expiry_time);
559 } else {
560 cur_setting->it_value.tv_sec = 0;
561 cur_setting->it_value.tv_nsec = 0;
562 }
ea7802f6 563
e86fea76 564 cur_setting->it_interval = ktime_to_timespec(timr->it.alarm.interval);
9a7adcf5
JS
565}
566
567/**
568 * alarm_timer_del - posix timer_del interface
569 * @timr: k_itimer pointer to be deleted
570 *
571 * Cancels any programmed alarms for the given timer.
572 */
573static int alarm_timer_del(struct k_itimer *timr)
574{
1c6b39ad
JS
575 if (!rtcdev)
576 return -ENOTSUPP;
577
9082c465
JS
578 if (alarm_try_to_cancel(&timr->it.alarm.alarmtimer) < 0)
579 return TIMER_RETRY;
580
9a7adcf5
JS
581 return 0;
582}
583
584/**
585 * alarm_timer_set - posix timer_set interface
586 * @timr: k_itimer pointer to be deleted
587 * @flags: timer flags
588 * @new_setting: itimerspec to be used
589 * @old_setting: itimerspec being replaced
590 *
591 * Sets the timer to new_setting, and starts the timer.
592 */
593static int alarm_timer_set(struct k_itimer *timr, int flags,
594 struct itimerspec *new_setting,
595 struct itimerspec *old_setting)
596{
16927776
JS
597 ktime_t exp;
598
1c6b39ad
JS
599 if (!rtcdev)
600 return -ENOTSUPP;
601
16927776
JS
602 if (flags & ~TIMER_ABSTIME)
603 return -EINVAL;
604
971c90bf
JS
605 if (old_setting)
606 alarm_timer_get(timr, old_setting);
9a7adcf5
JS
607
608 /* If the timer was already set, cancel it */
9082c465
JS
609 if (alarm_try_to_cancel(&timr->it.alarm.alarmtimer) < 0)
610 return TIMER_RETRY;
9a7adcf5
JS
611
612 /* start the timer */
9e264762 613 timr->it.alarm.interval = timespec_to_ktime(new_setting->it_interval);
16927776
JS
614 exp = timespec_to_ktime(new_setting->it_value);
615 /* Convert (if necessary) to absolute time */
616 if (flags != TIMER_ABSTIME) {
617 ktime_t now;
618
619 now = alarm_bases[timr->it.alarm.alarmtimer.type].gettime();
620 exp = ktime_add(now, exp);
621 }
622
623 alarm_start(&timr->it.alarm.alarmtimer, exp);
9a7adcf5
JS
624 return 0;
625}
626
627/**
628 * alarmtimer_nsleep_wakeup - Wakeup function for alarm_timer_nsleep
629 * @alarm: ptr to alarm that fired
630 *
631 * Wakes up the task that set the alarmtimer
632 */
4b41308d
JS
633static enum alarmtimer_restart alarmtimer_nsleep_wakeup(struct alarm *alarm,
634 ktime_t now)
9a7adcf5
JS
635{
636 struct task_struct *task = (struct task_struct *)alarm->data;
637
638 alarm->data = NULL;
639 if (task)
640 wake_up_process(task);
4b41308d 641 return ALARMTIMER_NORESTART;
9a7adcf5
JS
642}
643
644/**
645 * alarmtimer_do_nsleep - Internal alarmtimer nsleep implementation
646 * @alarm: ptr to alarmtimer
647 * @absexp: absolute expiration time
648 *
649 * Sets the alarm timer and sleeps until it is fired or interrupted.
650 */
651static int alarmtimer_do_nsleep(struct alarm *alarm, ktime_t absexp)
652{
653 alarm->data = (void *)current;
654 do {
655 set_current_state(TASK_INTERRUPTIBLE);
9e264762 656 alarm_start(alarm, absexp);
9a7adcf5
JS
657 if (likely(alarm->data))
658 schedule();
659
660 alarm_cancel(alarm);
661 } while (alarm->data && !signal_pending(current));
662
663 __set_current_state(TASK_RUNNING);
664
665 return (alarm->data == NULL);
666}
667
668
669/**
670 * update_rmtp - Update remaining timespec value
671 * @exp: expiration time
672 * @type: timer type
673 * @rmtp: user pointer to remaining timepsec value
674 *
675 * Helper function that fills in rmtp value with time between
676 * now and the exp value
677 */
678static int update_rmtp(ktime_t exp, enum alarmtimer_type type,
679 struct timespec __user *rmtp)
680{
681 struct timespec rmt;
682 ktime_t rem;
683
684 rem = ktime_sub(exp, alarm_bases[type].gettime());
685
686 if (rem.tv64 <= 0)
687 return 0;
688 rmt = ktime_to_timespec(rem);
689
690 if (copy_to_user(rmtp, &rmt, sizeof(*rmtp)))
691 return -EFAULT;
692
693 return 1;
694
695}
696
697/**
698 * alarm_timer_nsleep_restart - restartblock alarmtimer nsleep
699 * @restart: ptr to restart block
700 *
701 * Handles restarted clock_nanosleep calls
702 */
703static long __sched alarm_timer_nsleep_restart(struct restart_block *restart)
704{
ab8177bc 705 enum alarmtimer_type type = restart->nanosleep.clockid;
9a7adcf5
JS
706 ktime_t exp;
707 struct timespec __user *rmtp;
708 struct alarm alarm;
709 int ret = 0;
710
711 exp.tv64 = restart->nanosleep.expires;
712 alarm_init(&alarm, type, alarmtimer_nsleep_wakeup);
713
714 if (alarmtimer_do_nsleep(&alarm, exp))
715 goto out;
716
717 if (freezing(current))
718 alarmtimer_freezerset(exp, type);
719
720 rmtp = restart->nanosleep.rmtp;
721 if (rmtp) {
722 ret = update_rmtp(exp, type, rmtp);
723 if (ret <= 0)
724 goto out;
725 }
726
727
728 /* The other values in restart are already filled in */
729 ret = -ERESTART_RESTARTBLOCK;
730out:
731 return ret;
732}
733
734/**
735 * alarm_timer_nsleep - alarmtimer nanosleep
736 * @which_clock: clockid
737 * @flags: determins abstime or relative
738 * @tsreq: requested sleep time (abs or rel)
739 * @rmtp: remaining sleep time saved
740 *
741 * Handles clock_nanosleep calls against _ALARM clockids
742 */
743static int alarm_timer_nsleep(const clockid_t which_clock, int flags,
744 struct timespec *tsreq, struct timespec __user *rmtp)
745{
746 enum alarmtimer_type type = clock2alarm(which_clock);
747 struct alarm alarm;
748 ktime_t exp;
749 int ret = 0;
750 struct restart_block *restart;
751
1c6b39ad
JS
752 if (!alarmtimer_get_rtcdev())
753 return -ENOTSUPP;
754
16927776
JS
755 if (flags & ~TIMER_ABSTIME)
756 return -EINVAL;
757
9a7adcf5
JS
758 if (!capable(CAP_WAKE_ALARM))
759 return -EPERM;
760
761 alarm_init(&alarm, type, alarmtimer_nsleep_wakeup);
762
763 exp = timespec_to_ktime(*tsreq);
764 /* Convert (if necessary) to absolute time */
765 if (flags != TIMER_ABSTIME) {
766 ktime_t now = alarm_bases[type].gettime();
767 exp = ktime_add(now, exp);
768 }
769
770 if (alarmtimer_do_nsleep(&alarm, exp))
771 goto out;
772
773 if (freezing(current))
774 alarmtimer_freezerset(exp, type);
775
776 /* abs timers don't set remaining time or restart */
777 if (flags == TIMER_ABSTIME) {
778 ret = -ERESTARTNOHAND;
779 goto out;
780 }
781
782 if (rmtp) {
783 ret = update_rmtp(exp, type, rmtp);
784 if (ret <= 0)
785 goto out;
786 }
787
f56141e3 788 restart = &current->restart_block;
9a7adcf5 789 restart->fn = alarm_timer_nsleep_restart;
ab8177bc 790 restart->nanosleep.clockid = type;
9a7adcf5
JS
791 restart->nanosleep.expires = exp.tv64;
792 restart->nanosleep.rmtp = rmtp;
793 ret = -ERESTART_RESTARTBLOCK;
794
795out:
796 return ret;
797}
ff3ead96 798
ff3ead96
JS
799
800/* Suspend hook structures */
801static const struct dev_pm_ops alarmtimer_pm_ops = {
802 .suspend = alarmtimer_suspend,
803};
804
805static struct platform_driver alarmtimer_driver = {
806 .driver = {
807 .name = "alarmtimer",
808 .pm = &alarmtimer_pm_ops,
809 }
810};
811
812/**
813 * alarmtimer_init - Initialize alarm timer code
814 *
815 * This function initializes the alarm bases and registers
816 * the posix clock ids.
817 */
818static int __init alarmtimer_init(void)
819{
4523f6ad 820 struct platform_device *pdev;
ff3ead96
JS
821 int error = 0;
822 int i;
9a7adcf5
JS
823 struct k_clock alarm_clock = {
824 .clock_getres = alarm_clock_getres,
825 .clock_get = alarm_clock_get,
826 .timer_create = alarm_timer_create,
827 .timer_set = alarm_timer_set,
828 .timer_del = alarm_timer_del,
829 .timer_get = alarm_timer_get,
830 .nsleep = alarm_timer_nsleep,
831 };
832
c5e14e76 833 alarmtimer_rtc_timer_init();
ad30dfa9 834
9a7adcf5
JS
835 posix_timers_register_clock(CLOCK_REALTIME_ALARM, &alarm_clock);
836 posix_timers_register_clock(CLOCK_BOOTTIME_ALARM, &alarm_clock);
ff3ead96
JS
837
838 /* Initialize alarm bases */
839 alarm_bases[ALARM_REALTIME].base_clockid = CLOCK_REALTIME;
840 alarm_bases[ALARM_REALTIME].gettime = &ktime_get_real;
841 alarm_bases[ALARM_BOOTTIME].base_clockid = CLOCK_BOOTTIME;
842 alarm_bases[ALARM_BOOTTIME].gettime = &ktime_get_boottime;
843 for (i = 0; i < ALARM_NUMTYPE; i++) {
844 timerqueue_init_head(&alarm_bases[i].timerqueue);
845 spin_lock_init(&alarm_bases[i].lock);
ff3ead96 846 }
8bc0dafb 847
4523f6ad
TG
848 error = alarmtimer_rtc_interface_setup();
849 if (error)
850 return error;
851
ff3ead96 852 error = platform_driver_register(&alarmtimer_driver);
4523f6ad
TG
853 if (error)
854 goto out_if;
ff3ead96 855
4523f6ad
TG
856 pdev = platform_device_register_simple("alarmtimer", -1, NULL, 0);
857 if (IS_ERR(pdev)) {
858 error = PTR_ERR(pdev);
859 goto out_drv;
860 }
59a93c27 861 ws = wakeup_source_register("alarmtimer");
4523f6ad
TG
862 return 0;
863
864out_drv:
865 platform_driver_unregister(&alarmtimer_driver);
866out_if:
867 alarmtimer_rtc_interface_remove();
ff3ead96
JS
868 return error;
869}
870device_initcall(alarmtimer_init);