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