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