blob: f4ace1bf838284da0dd4c924a71ec5f651babb6d [file] [log] [blame]
Thomas Gleixner35728b82018-10-31 19:21:09 +01001// SPDX-License-Identifier: GPL-2.0
John Stultzff3ead92011-01-11 09:42:13 -08002/*
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>
John Stultzff3ead92011-01-11 09:42:13 -080014 */
15#include <linux/time.h>
16#include <linux/hrtimer.h>
17#include <linux/timerqueue.h>
18#include <linux/rtc.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010019#include <linux/sched/signal.h>
Ingo Molnarb17b0152017-02-08 18:51:35 +010020#include <linux/sched/debug.h>
John Stultzff3ead92011-01-11 09:42:13 -080021#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>
Al Viroedbeda42017-06-07 09:42:31 +010027#include <linux/compat.h>
Alexandre Belloni51218292017-08-21 00:01:46 +020028#include <linux/module.h>
Andrei Vagin5a590f32019-11-12 01:27:00 +000029#include <linux/time_namespace.h>
John Stultzff3ead92011-01-11 09:42:13 -080030
Thomas Gleixnerbab0aae2017-05-30 23:15:41 +020031#include "posix-timers.h"
32
Baolin Wang4a057542016-11-28 14:35:21 -080033#define CREATE_TRACE_POINTS
34#include <trace/events/alarmtimer.h>
35
John Stultz180bf812011-04-28 12:58:11 -070036/**
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
Andrei Vagin41b3b8d2019-11-12 01:26:56 +000040 * @get_ktime: Function to read the time correlating to the base
Andrei Vagin2f58bf92019-11-12 01:26:57 +000041 * @get_timespec: Function to read the namespace time correlating to the base
John Stultz180bf812011-04-28 12:58:11 -070042 * @base_clockid: clockid for the base
John Stultz180bf812011-04-28 12:58:11 -070043 */
John Stultzff3ead92011-01-11 09:42:13 -080044static struct alarm_base {
45 spinlock_t lock;
46 struct timerqueue_head timerqueue;
Andrei Vagin41b3b8d2019-11-12 01:26:56 +000047 ktime_t (*get_ktime)(void);
Andrei Vagin2f58bf92019-11-12 01:26:57 +000048 void (*get_timespec)(struct timespec64 *tp);
John Stultzff3ead92011-01-11 09:42:13 -080049 clockid_t base_clockid;
John Stultzff3ead92011-01-11 09:42:13 -080050} alarm_bases[ALARM_NUMTYPE];
51
Thomas Gleixnerb6b3b802017-05-27 12:23:47 +020052#if defined(CONFIG_POSIX_TIMERS) || defined(CONFIG_RTC_CLASS)
Baolin Wang4a057542016-11-28 14:35:21 -080053/* freezer information to handle clock_nanosleep triggered wakeups */
54static enum alarmtimer_type freezer_alarmtype;
55static ktime_t freezer_expires;
John Stultzc008ba582011-06-16 18:27:09 -070056static ktime_t freezer_delta;
57static DEFINE_SPINLOCK(freezer_delta_lock);
Thomas Gleixnerb6b3b802017-05-27 12:23:47 +020058#endif
John Stultzc008ba582011-06-16 18:27:09 -070059
Geert Uytterhoeven47b4a452017-07-05 14:08:35 +020060#ifdef CONFIG_RTC_CLASS
John Stultz180bf812011-04-28 12:58:11 -070061/* rtc timer and device for setting alarm wakeups at suspend */
Thomas Gleixnerc5e14e72012-03-24 12:46:23 +010062static struct rtc_timer rtctimer;
John Stultzff3ead92011-01-11 09:42:13 -080063static struct rtc_device *rtcdev;
John Stultzc008ba582011-06-16 18:27:09 -070064static DEFINE_SPINLOCK(rtcdev_lock);
John Stultzff3ead92011-01-11 09:42:13 -080065
John Stultzc008ba582011-06-16 18:27:09 -070066/**
John Stultzc008ba582011-06-16 18:27:09 -070067 * alarmtimer_get_rtcdev - Return selected rtcdevice
68 *
69 * This function returns the rtc device to use for wakealarms.
John Stultzc008ba582011-06-16 18:27:09 -070070 */
John Stultz57c498f2012-04-20 12:31:45 -070071struct rtc_device *alarmtimer_get_rtcdev(void)
John Stultzc008ba582011-06-16 18:27:09 -070072{
John Stultzc008ba582011-06-16 18:27:09 -070073 unsigned long flags;
74 struct rtc_device *ret;
75
76 spin_lock_irqsave(&rtcdev_lock, flags);
John Stultzc008ba582011-06-16 18:27:09 -070077 ret = rtcdev;
78 spin_unlock_irqrestore(&rtcdev_lock, flags);
79
80 return ret;
81}
Pramod Gurav71d5d2b2014-06-13 11:49:42 +053082EXPORT_SYMBOL_GPL(alarmtimer_get_rtcdev);
John Stultz8bc0daf2011-07-14 18:35:13 -070083
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);
Stephen Boydc79108b2020-01-23 21:58:46 -080089 struct platform_device *pdev;
Stephen Boyd6b6d1882020-01-09 07:59:07 -080090 int ret = 0;
John Stultz8bc0daf2011-07-14 18:35:13 -070091
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
Stephen Boydc79108b2020-01-23 21:58:46 -0800100 pdev = platform_device_register_data(dev, "alarmtimer",
101 PLATFORM_DEVID_AUTO, NULL, 0);
Stephen Boyd7c94cac2020-01-23 21:58:47 -0800102 if (!IS_ERR(pdev))
103 device_init_wakeup(&pdev->dev, true);
Geert Uytterhoeven47b4a452017-07-05 14:08:35 +0200104
John Stultz8bc0daf2011-07-14 18:35:13 -0700105 spin_lock_irqsave(&rtcdev_lock, flags);
Stephen Boyd7c94cac2020-01-23 21:58:47 -0800106 if (!IS_ERR(pdev) && !rtcdev) {
Alexandre Belloni51218292017-08-21 00:01:46 +0200107 if (!try_module_get(rtc->owner)) {
Stephen Boyd6b6d1882020-01-09 07:59:07 -0800108 ret = -1;
109 goto unlock;
Alexandre Belloni51218292017-08-21 00:01:46 +0200110 }
111
John Stultz8bc0daf2011-07-14 18:35:13 -0700112 rtcdev = rtc;
113 /* hold a reference so it doesn't go away */
114 get_device(dev);
Stephen Boydc79108b2020-01-23 21:58:46 -0800115 pdev = NULL;
116 } else {
117 ret = -1;
John Stultz8bc0daf2011-07-14 18:35:13 -0700118 }
Stephen Boyd6b6d1882020-01-09 07:59:07 -0800119unlock:
John Stultz8bc0daf2011-07-14 18:35:13 -0700120 spin_unlock_irqrestore(&rtcdev_lock, flags);
Geert Uytterhoeven47b4a452017-07-05 14:08:35 +0200121
Stephen Boydc79108b2020-01-23 21:58:46 -0800122 platform_device_unregister(pdev);
Geert Uytterhoeven47b4a452017-07-05 14:08:35 +0200123
Stephen Boyd6b6d1882020-01-09 07:59:07 -0800124 return ret;
John Stultz8bc0daf2011-07-14 18:35:13 -0700125}
126
Thomas Gleixnerc5e14e72012-03-24 12:46:23 +0100127static inline void alarmtimer_rtc_timer_init(void)
128{
129 rtc_timer_init(&rtctimer, NULL, NULL);
130}
131
John Stultz8bc0daf2011-07-14 18:35:13 -0700132static struct class_interface alarmtimer_rtc_interface = {
133 .add_dev = &alarmtimer_rtc_add_device,
134};
135
Thomas Gleixner4523f6a2011-09-14 10:54:29 +0200136static int alarmtimer_rtc_interface_setup(void)
John Stultz8bc0daf2011-07-14 18:35:13 -0700137{
138 alarmtimer_rtc_interface.class = rtc_class;
Thomas Gleixner4523f6a2011-09-14 10:54:29 +0200139 return class_interface_register(&alarmtimer_rtc_interface);
140}
141static void alarmtimer_rtc_interface_remove(void)
142{
143 class_interface_unregister(&alarmtimer_rtc_interface);
John Stultz8bc0daf2011-07-14 18:35:13 -0700144}
John Stultz1c6b39a2011-06-16 18:47:37 -0700145#else
Thomas Gleixner4523f6a2011-09-14 10:54:29 +0200146static inline int alarmtimer_rtc_interface_setup(void) { return 0; }
147static inline void alarmtimer_rtc_interface_remove(void) { }
Thomas Gleixnerc5e14e72012-03-24 12:46:23 +0100148static inline void alarmtimer_rtc_timer_init(void) { }
John Stultzc008ba582011-06-16 18:27:09 -0700149#endif
John Stultzff3ead92011-01-11 09:42:13 -0800150
John Stultz180bf812011-04-28 12:58:11 -0700151/**
John Stultzff3ead92011-01-11 09:42:13 -0800152 * 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 *
John Stultzdae373b2012-09-13 19:12:16 -0400156 * Adds alarm to a alarm_base timerqueue
John Stultzff3ead92011-01-11 09:42:13 -0800157 *
158 * Must hold base->lock when calling.
159 */
160static void alarmtimer_enqueue(struct alarm_base *base, struct alarm *alarm)
161{
John Stultzdae373b2012-09-13 19:12:16 -0400162 if (alarm->state & ALARMTIMER_STATE_ENQUEUED)
163 timerqueue_del(&base->timerqueue, &alarm->node);
164
John Stultzff3ead92011-01-11 09:42:13 -0800165 timerqueue_add(&base->timerqueue, &alarm->node);
John Stultza28cde82011-08-10 12:30:21 -0700166 alarm->state |= ALARMTIMER_STATE_ENQUEUED;
John Stultzff3ead92011-01-11 09:42:13 -0800167}
168
John Stultz180bf812011-04-28 12:58:11 -0700169/**
John Stultza65bcc12012-09-13 19:25:22 -0400170 * alarmtimer_dequeue - Removes an alarm timer from an alarm_base timerqueue
John Stultzff3ead92011-01-11 09:42:13 -0800171 * @base: pointer to the base where the timer is running
172 * @alarm: pointer to alarm being removed
173 *
John Stultzdae373b2012-09-13 19:12:16 -0400174 * Removes alarm to a alarm_base timerqueue
John Stultzff3ead92011-01-11 09:42:13 -0800175 *
176 * Must hold base->lock when calling.
177 */
John Stultza65bcc12012-09-13 19:25:22 -0400178static void alarmtimer_dequeue(struct alarm_base *base, struct alarm *alarm)
John Stultzff3ead92011-01-11 09:42:13 -0800179{
John Stultza28cde82011-08-10 12:30:21 -0700180 if (!(alarm->state & ALARMTIMER_STATE_ENQUEUED))
181 return;
182
John Stultzff3ead92011-01-11 09:42:13 -0800183 timerqueue_del(&base->timerqueue, &alarm->node);
John Stultza28cde82011-08-10 12:30:21 -0700184 alarm->state &= ~ALARMTIMER_STATE_ENQUEUED;
John Stultzff3ead92011-01-11 09:42:13 -0800185}
186
John Stultz7068b7a2011-04-28 13:29:18 -0700187
John Stultz180bf812011-04-28 12:58:11 -0700188/**
John Stultz7068b7a2011-04-28 13:29:18 -0700189 * alarmtimer_fired - Handles alarm hrtimer being fired.
190 * @timer: pointer to hrtimer being run
John Stultzff3ead92011-01-11 09:42:13 -0800191 *
John Stultz180bf812011-04-28 12:58:11 -0700192 * 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
Randy Dunlapb0294f32020-08-06 20:32:48 -0700195 * the next future alarm timer expires.
John Stultzff3ead92011-01-11 09:42:13 -0800196 */
John Stultz7068b7a2011-04-28 13:29:18 -0700197static enum hrtimer_restart alarmtimer_fired(struct hrtimer *timer)
John Stultzff3ead92011-01-11 09:42:13 -0800198{
John Stultzdae373b2012-09-13 19:12:16 -0400199 struct alarm *alarm = container_of(timer, struct alarm, timer);
200 struct alarm_base *base = &alarm_bases[alarm->type];
John Stultzff3ead92011-01-11 09:42:13 -0800201 unsigned long flags;
John Stultz7068b7a2011-04-28 13:29:18 -0700202 int ret = HRTIMER_NORESTART;
John Stultz54da23b2011-08-10 11:08:07 -0700203 int restart = ALARMTIMER_NORESTART;
John Stultzff3ead92011-01-11 09:42:13 -0800204
205 spin_lock_irqsave(&base->lock, flags);
John Stultza65bcc12012-09-13 19:25:22 -0400206 alarmtimer_dequeue(base, alarm);
John Stultzdae373b2012-09-13 19:12:16 -0400207 spin_unlock_irqrestore(&base->lock, flags);
John Stultzff3ead92011-01-11 09:42:13 -0800208
John Stultzdae373b2012-09-13 19:12:16 -0400209 if (alarm->function)
Andrei Vagin41b3b8d2019-11-12 01:26:56 +0000210 restart = alarm->function(alarm, base->get_ktime());
John Stultzff3ead92011-01-11 09:42:13 -0800211
John Stultzdae373b2012-09-13 19:12:16 -0400212 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);
John Stultz7068b7a2011-04-28 13:29:18 -0700216 ret = HRTIMER_RESTART;
John Stultzff3ead92011-01-11 09:42:13 -0800217 }
218 spin_unlock_irqrestore(&base->lock, flags);
John Stultzff3ead92011-01-11 09:42:13 -0800219
Andrei Vagin41b3b8d2019-11-12 01:26:56 +0000220 trace_alarmtimer_fired(alarm, base->get_ktime());
John Stultz7068b7a2011-04-28 13:29:18 -0700221 return ret;
John Stultzff3ead92011-01-11 09:42:13 -0800222
John Stultzff3ead92011-01-11 09:42:13 -0800223}
224
Todd Poynor6cffe002013-05-15 14:38:11 -0700225ktime_t alarm_expires_remaining(const struct alarm *alarm)
226{
227 struct alarm_base *base = &alarm_bases[alarm->type];
Andrei Vagin41b3b8d2019-11-12 01:26:56 +0000228 return ktime_sub(alarm->node.expires, base->get_ktime());
Todd Poynor6cffe002013-05-15 14:38:11 -0700229}
Marcus Gelderie11682a42013-06-04 09:32:09 +0200230EXPORT_SYMBOL_GPL(alarm_expires_remaining);
Todd Poynor6cffe002013-05-15 14:38:11 -0700231
John Stultz472647d2011-04-29 15:03:10 -0700232#ifdef CONFIG_RTC_CLASS
John Stultz180bf812011-04-28 12:58:11 -0700233/**
John Stultzff3ead92011-01-11 09:42:13 -0800234 * alarmtimer_suspend - Suspend time callback
235 * @dev: unused
John Stultzff3ead92011-01-11 09:42:13 -0800236 *
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{
Baolin Wang4a057542016-11-28 14:35:21 -0800244 ktime_t min, now, expires;
245 int i, ret, type;
John Stultzc008ba582011-06-16 18:27:09 -0700246 struct rtc_device *rtc;
Baolin Wang4a057542016-11-28 14:35:21 -0800247 unsigned long flags;
248 struct rtc_time tm;
John Stultzff3ead92011-01-11 09:42:13 -0800249
250 spin_lock_irqsave(&freezer_delta_lock, flags);
251 min = freezer_delta;
Baolin Wang4a057542016-11-28 14:35:21 -0800252 expires = freezer_expires;
253 type = freezer_alarmtype;
Thomas Gleixner8b0e1952016-12-25 12:30:41 +0100254 freezer_delta = 0;
John Stultzff3ead92011-01-11 09:42:13 -0800255 spin_unlock_irqrestore(&freezer_delta_lock, flags);
256
John Stultz8bc0daf2011-07-14 18:35:13 -0700257 rtc = alarmtimer_get_rtcdev();
John Stultzff3ead92011-01-11 09:42:13 -0800258 /* If we have no rtcdev, just return */
John Stultzc008ba582011-06-16 18:27:09 -0700259 if (!rtc)
John Stultzff3ead92011-01-11 09:42:13 -0800260 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;
Andrei Vagin41b3b8d2019-11-12 01:26:56 +0000273 delta = ktime_sub(next->expires, base->get_ktime());
Thomas Gleixner2456e852016-12-25 11:38:40 +0100274 if (!min || (delta < min)) {
Baolin Wang4a057542016-11-28 14:35:21 -0800275 expires = next->expires;
John Stultzff3ead92011-01-11 09:42:13 -0800276 min = delta;
Baolin Wang4a057542016-11-28 14:35:21 -0800277 type = i;
278 }
John Stultzff3ead92011-01-11 09:42:13 -0800279 }
Thomas Gleixner2456e852016-12-25 11:38:40 +0100280 if (min == 0)
John Stultzff3ead92011-01-11 09:42:13 -0800281 return 0;
282
Todd Poynor59a93c22012-08-09 00:37:27 -0700283 if (ktime_to_ns(min) < 2 * NSEC_PER_SEC) {
Stephen Boyd7c94cac2020-01-23 21:58:47 -0800284 pm_wakeup_event(dev, 2 * MSEC_PER_SEC);
Todd Poynor59a93c22012-08-09 00:37:27 -0700285 return -EBUSY;
286 }
John Stultzff3ead92011-01-11 09:42:13 -0800287
Baolin Wang4a057542016-11-28 14:35:21 -0800288 trace_alarmtimer_suspend(expires, type);
289
John Stultzff3ead92011-01-11 09:42:13 -0800290 /* Setup an rtc timer to fire that far in the future */
John Stultzc008ba582011-06-16 18:27:09 -0700291 rtc_timer_cancel(rtc, &rtctimer);
292 rtc_read_time(rtc, &tm);
John Stultzff3ead92011-01-11 09:42:13 -0800293 now = rtc_tm_to_ktime(tm);
294 now = ktime_add(now, min);
295
Todd Poynor59a93c22012-08-09 00:37:27 -0700296 /* Set alarm, if in the past reject suspend briefly to handle */
Thomas Gleixner8b0e1952016-12-25 12:30:41 +0100297 ret = rtc_timer_start(rtc, &rtctimer, now, 0);
Todd Poynor59a93c22012-08-09 00:37:27 -0700298 if (ret < 0)
Stephen Boyd7c94cac2020-01-23 21:58:47 -0800299 pm_wakeup_event(dev, MSEC_PER_SEC);
Todd Poynor59a93c22012-08-09 00:37:27 -0700300 return ret;
John Stultzff3ead92011-01-11 09:42:13 -0800301}
zhuo-haoa0e32132015-11-17 20:08:07 +0800302
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
John Stultz472647d2011-04-29 15:03:10 -0700313#else
314static int alarmtimer_suspend(struct device *dev)
315{
316 return 0;
317}
zhuo-haoa0e32132015-11-17 20:08:07 +0800318
319static int alarmtimer_resume(struct device *dev)
320{
321 return 0;
322}
John Stultz472647d2011-04-29 15:03:10 -0700323#endif
John Stultzff3ead92011-01-11 09:42:13 -0800324
Thomas Gleixnerbd031432018-03-26 15:29:57 +0200325static 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
John Stultz180bf812011-04-28 12:58:11 -0700336/**
John Stultzff3ead92011-01-11 09:42:13 -0800337 * 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
John Stultzff3ead92011-01-11 09:42:13 -0800341 */
342void alarm_init(struct alarm *alarm, enum alarmtimer_type type,
John Stultz4b413082011-08-10 10:37:59 -0700343 enum alarmtimer_restart (*function)(struct alarm *, ktime_t))
John Stultzff3ead92011-01-11 09:42:13 -0800344{
John Stultzdae373b2012-09-13 19:12:16 -0400345 hrtimer_init(&alarm->timer, alarm_bases[type].base_clockid,
Thomas Gleixnerbd031432018-03-26 15:29:57 +0200346 HRTIMER_MODE_ABS);
347 __alarm_init(alarm, type, function);
John Stultzff3ead92011-01-11 09:42:13 -0800348}
Marcus Gelderie11682a42013-06-04 09:32:09 +0200349EXPORT_SYMBOL_GPL(alarm_init);
John Stultzff3ead92011-01-11 09:42:13 -0800350
John Stultz180bf812011-04-28 12:58:11 -0700351/**
Todd Poynor6cffe002013-05-15 14:38:11 -0700352 * alarm_start - Sets an absolute alarm to fire
John Stultzff3ead92011-01-11 09:42:13 -0800353 * @alarm: ptr to alarm to set
354 * @start: time to run the alarm
John Stultzff3ead92011-01-11 09:42:13 -0800355 */
Thomas Gleixnerb1932172015-04-14 21:09:18 +0000356void alarm_start(struct alarm *alarm, ktime_t start)
John Stultzff3ead92011-01-11 09:42:13 -0800357{
358 struct alarm_base *base = &alarm_bases[alarm->type];
359 unsigned long flags;
360
361 spin_lock_irqsave(&base->lock, flags);
John Stultzff3ead92011-01-11 09:42:13 -0800362 alarm->node.expires = start;
John Stultzff3ead92011-01-11 09:42:13 -0800363 alarmtimer_enqueue(base, alarm);
Thomas Gleixnerb1932172015-04-14 21:09:18 +0000364 hrtimer_start(&alarm->timer, alarm->node.expires, HRTIMER_MODE_ABS);
John Stultzff3ead92011-01-11 09:42:13 -0800365 spin_unlock_irqrestore(&base->lock, flags);
Baolin Wang4a057542016-11-28 14:35:21 -0800366
Andrei Vagin41b3b8d2019-11-12 01:26:56 +0000367 trace_alarmtimer_start(alarm, base->get_ktime());
John Stultzff3ead92011-01-11 09:42:13 -0800368}
Marcus Gelderie11682a42013-06-04 09:32:09 +0200369EXPORT_SYMBOL_GPL(alarm_start);
John Stultzff3ead92011-01-11 09:42:13 -0800370
John Stultz180bf812011-04-28 12:58:11 -0700371/**
Todd Poynor6cffe002013-05-15 14:38:11 -0700372 * 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 */
Thomas Gleixnerb1932172015-04-14 21:09:18 +0000376void alarm_start_relative(struct alarm *alarm, ktime_t start)
Todd Poynor6cffe002013-05-15 14:38:11 -0700377{
378 struct alarm_base *base = &alarm_bases[alarm->type];
379
Andrei Vagin41b3b8d2019-11-12 01:26:56 +0000380 start = ktime_add_safe(start, base->get_ktime());
Thomas Gleixnerb1932172015-04-14 21:09:18 +0000381 alarm_start(alarm, start);
Todd Poynor6cffe002013-05-15 14:38:11 -0700382}
Marcus Gelderie11682a42013-06-04 09:32:09 +0200383EXPORT_SYMBOL_GPL(alarm_start_relative);
Todd Poynor6cffe002013-05-15 14:38:11 -0700384
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}
Marcus Gelderie11682a42013-06-04 09:32:09 +0200396EXPORT_SYMBOL_GPL(alarm_restart);
Todd Poynor6cffe002013-05-15 14:38:11 -0700397
398/**
John Stultz9082c462011-08-10 12:41:36 -0700399 * alarm_try_to_cancel - Tries to cancel an alarm timer
John Stultzff3ead92011-01-11 09:42:13 -0800400 * @alarm: ptr to alarm to be canceled
John Stultz9082c462011-08-10 12:41:36 -0700401 *
402 * Returns 1 if the timer was canceled, 0 if it was not running,
403 * and -1 if the callback was running
John Stultzff3ead92011-01-11 09:42:13 -0800404 */
John Stultz9082c462011-08-10 12:41:36 -0700405int alarm_try_to_cancel(struct alarm *alarm)
John Stultzff3ead92011-01-11 09:42:13 -0800406{
407 struct alarm_base *base = &alarm_bases[alarm->type];
408 unsigned long flags;
John Stultzdae373b2012-09-13 19:12:16 -0400409 int ret;
410
John Stultzff3ead92011-01-11 09:42:13 -0800411 spin_lock_irqsave(&base->lock, flags);
John Stultzdae373b2012-09-13 19:12:16 -0400412 ret = hrtimer_try_to_cancel(&alarm->timer);
413 if (ret >= 0)
John Stultza65bcc12012-09-13 19:25:22 -0400414 alarmtimer_dequeue(base, alarm);
John Stultzff3ead92011-01-11 09:42:13 -0800415 spin_unlock_irqrestore(&base->lock, flags);
Baolin Wang4a057542016-11-28 14:35:21 -0800416
Andrei Vagin41b3b8d2019-11-12 01:26:56 +0000417 trace_alarmtimer_cancel(alarm, base->get_ktime());
John Stultz9082c462011-08-10 12:41:36 -0700418 return ret;
John Stultzff3ead92011-01-11 09:42:13 -0800419}
Marcus Gelderie11682a42013-06-04 09:32:09 +0200420EXPORT_SYMBOL_GPL(alarm_try_to_cancel);
John Stultzff3ead92011-01-11 09:42:13 -0800421
422
John Stultz9082c462011-08-10 12:41:36 -0700423/**
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;
Anna-Maria Gleixner51ae3302019-07-31 00:33:49 +0200435 hrtimer_cancel_wait_running(&alarm->timer);
John Stultz9082c462011-08-10 12:41:36 -0700436 }
437}
Marcus Gelderie11682a42013-06-04 09:32:09 +0200438EXPORT_SYMBOL_GPL(alarm_cancel);
John Stultz9082c462011-08-10 12:41:36 -0700439
John Stultzdce75a82011-08-10 11:31:03 -0700440
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
Thomas Gleixner2456e852016-12-25 11:38:40 +0100448 if (delta < 0)
John Stultzdce75a82011-08-10 11:31:03 -0700449 return 0;
450
Thomas Gleixner2456e852016-12-25 11:38:40 +0100451 if (unlikely(delta >= interval)) {
John Stultzdce75a82011-08-10 11:31:03 -0700452 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
Thomas Gleixner2456e852016-12-25 11:38:40 +0100459 if (alarm->node.expires > now)
John Stultzdce75a82011-08-10 11:31:03 -0700460 return overrun;
461 /*
462 * This (and the ktime_add() below) is the
463 * correction for exact:
464 */
465 overrun++;
466 }
467
Thomas Gleixnerf4781e72017-05-30 23:15:34 +0200468 alarm->node.expires = ktime_add_safe(alarm->node.expires, interval);
John Stultzdce75a82011-08-10 11:31:03 -0700469 return overrun;
470}
Marcus Gelderie11682a42013-06-04 09:32:09 +0200471EXPORT_SYMBOL_GPL(alarm_forward);
John Stultzdce75a82011-08-10 11:31:03 -0700472
Todd Poynor6cffe002013-05-15 14:38:11 -0700473u64 alarm_forward_now(struct alarm *alarm, ktime_t interval)
474{
475 struct alarm_base *base = &alarm_bases[alarm->type];
476
Andrei Vagin41b3b8d2019-11-12 01:26:56 +0000477 return alarm_forward(alarm, base->get_ktime(), interval);
Todd Poynor6cffe002013-05-15 14:38:11 -0700478}
Marcus Gelderie11682a42013-06-04 09:32:09 +0200479EXPORT_SYMBOL_GPL(alarm_forward_now);
John Stultzdce75a82011-08-10 11:31:03 -0700480
Christoph Hellwigd3ba5a92017-05-26 12:03:11 +0300481#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
Andrei Vagin41b3b8d2019-11-12 01:26:56 +0000503 delta = ktime_sub(absexp, base->get_ktime());
Christoph Hellwigd3ba5a92017-05-26 12:03:11 +0300504
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}
John Stultzdce75a82011-08-10 11:31:03 -0700513
John Stultz180bf812011-04-28 12:58:11 -0700514/**
John Stultz9a7adcf52011-01-11 09:54:33 -0800515 * clock2alarm - helper that converts from clockid to alarmtypes
516 * @clockid: clockid.
John Stultz9a7adcf52011-01-11 09:54:33 -0800517 */
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
John Stultz180bf812011-04-28 12:58:11 -0700527/**
John Stultz9a7adcf52011-01-11 09:54:33 -0800528 * alarm_handle_timer - Callback for posix timers
529 * @alarm: alarm that fired
530 *
531 * Posix timer callback for expired alarm timers.
532 */
John Stultz4b413082011-08-10 10:37:59 -0700533static enum alarmtimer_restart alarm_handle_timer(struct alarm *alarm,
534 ktime_t now)
John Stultz9a7adcf52011-01-11 09:54:33 -0800535{
536 struct k_itimer *ptr = container_of(alarm, struct k_itimer,
Thomas Gleixnerf2c45802017-05-30 23:15:59 +0200537 it.alarm.alarmtimer);
Richard Larocque474e941b2014-09-09 18:31:05 -0700538 enum alarmtimer_restart result = ALARMTIMER_NORESTART;
Thomas Gleixnerf2c45802017-05-30 23:15:59 +0200539 unsigned long flags;
540 int si_private = 0;
Richard Larocque474e941b2014-09-09 18:31:05 -0700541
542 spin_lock_irqsave(&ptr->it_lock, flags);
John Stultz4b413082011-08-10 10:37:59 -0700543
Thomas Gleixnerf2c45802017-05-30 23:15:59 +0200544 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;
Richard Larocque474e941b2014-09-09 18:31:05 -0700556 result = ALARMTIMER_RESTART;
John Stultz54da23b2011-08-10 11:08:07 -0700557 }
Richard Larocque474e941b2014-09-09 18:31:05 -0700558 spin_unlock_irqrestore(&ptr->it_lock, flags);
559
560 return result;
John Stultz9a7adcf52011-01-11 09:54:33 -0800561}
562
John Stultz180bf812011-04-28 12:58:11 -0700563/**
Thomas Gleixnerb3db80f2017-05-30 23:15:54 +0200564 * 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
575/**
Thomas Gleixnere7561f12017-05-30 23:15:55 +0200576 * 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 */
Thomas Gleixner6fec64e2018-06-26 15:21:31 +0200580static s64 alarm_timer_forward(struct k_itimer *timr, ktime_t now)
Thomas Gleixnere7561f12017-05-30 23:15:55 +0200581{
582 struct alarm *alarm = &timr->it.alarm.alarmtimer;
583
Thomas Gleixner6fec64e2018-06-26 15:21:31 +0200584 return alarm_forward(alarm, timr->it_interval, now);
Thomas Gleixnere7561f12017-05-30 23:15:55 +0200585}
586
587/**
Thomas Gleixnerd653d8452017-05-30 23:15:56 +0200588 * 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
Andrei Vagin07d7e122019-04-07 21:15:42 -0700596 return ktime_sub(alarm->node.expires, now);
Thomas Gleixnerd653d8452017-05-30 23:15:56 +0200597}
598
599/**
Thomas Gleixnere344c9e2017-05-30 23:15:57 +0200600 * 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
608/**
Thomas Gleixnerec8f9542019-08-02 07:35:59 +0200609 * 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
621/**
Thomas Gleixnerb3bf6f32017-05-30 23:15:58 +0200622 * 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)
Andrei Vagin41b3b8d2019-11-12 01:26:56 +0000635 expires = ktime_add_safe(expires, base->get_ktime());
Thomas Gleixnerb3bf6f32017-05-30 23:15:58 +0200636 if (sigev_none)
637 alarm->node.expires = expires;
638 else
639 alarm_start(&timr->it.alarm.alarmtimer, expires);
640}
641
642/**
John Stultz9a7adcf52011-01-11 09:54:33 -0800643 * 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 */
Deepa Dinamanid2e3e0c2017-03-26 12:04:15 -0700649static int alarm_clock_getres(const clockid_t which_clock, struct timespec64 *tp)
John Stultz9a7adcf52011-01-11 09:54:33 -0800650{
John Stultz1c6b39a2011-06-16 18:47:37 -0700651 if (!alarmtimer_get_rtcdev())
KOSAKI Motohiro98d6f4d2013-10-14 17:33:16 -0400652 return -EINVAL;
John Stultz1c6b39a2011-06-16 18:47:37 -0700653
Thomas Gleixner056a3ca2015-04-14 21:08:32 +0000654 tp->tv_sec = 0;
655 tp->tv_nsec = hrtimer_resolution;
656 return 0;
John Stultz9a7adcf52011-01-11 09:54:33 -0800657}
658
659/**
Andrei Vagineaf80192019-11-12 01:26:55 +0000660 * alarm_clock_get_timespec - posix clock_get_timespec interface
John Stultz9a7adcf52011-01-11 09:54:33 -0800661 * @which_clock: clockid
662 * @tp: timespec to fill.
663 *
Andrei Vagin9c71a2e2019-11-12 01:26:58 +0000664 * Provides the underlying alarm base time in a tasks time namespace.
John Stultz9a7adcf52011-01-11 09:54:33 -0800665 */
Andrei Vagineaf80192019-11-12 01:26:55 +0000666static int alarm_clock_get_timespec(clockid_t which_clock, struct timespec64 *tp)
John Stultz9a7adcf52011-01-11 09:54:33 -0800667{
668 struct alarm_base *base = &alarm_bases[clock2alarm(which_clock)];
669
John Stultz1c6b39a2011-06-16 18:47:37 -0700670 if (!alarmtimer_get_rtcdev())
KOSAKI Motohiro98d6f4d2013-10-14 17:33:16 -0400671 return -EINVAL;
John Stultz1c6b39a2011-06-16 18:47:37 -0700672
Andrei Vagin2f58bf92019-11-12 01:26:57 +0000673 base->get_timespec(tp);
674
John Stultz9a7adcf52011-01-11 09:54:33 -0800675 return 0;
676}
677
678/**
Andrei Vagin9c71a2e2019-11-12 01:26:58 +0000679 * 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
694/**
John Stultz9a7adcf52011-01-11 09:54:33 -0800695 * 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;
John Stultz9a7adcf52011-01-11 09:54:33 -0800703
John Stultz1c6b39a2011-06-16 18:47:37 -0700704 if (!alarmtimer_get_rtcdev())
Thadeu Lima de Souza Cascardof18ddc132019-09-03 14:18:02 -0300705 return -EOPNOTSUPP;
John Stultz1c6b39a2011-06-16 18:47:37 -0700706
John Stultz9a7adcf52011-01-11 09:54:33 -0800707 if (!capable(CAP_WAKE_ALARM))
708 return -EPERM;
709
710 type = clock2alarm(new_timer->it_clock);
John Stultz9e264762011-08-10 12:09:24 -0700711 alarm_init(&new_timer->it.alarm.alarmtimer, type, alarm_handle_timer);
John Stultz9a7adcf52011-01-11 09:54:33 -0800712 return 0;
713}
714
715/**
John Stultz9a7adcf52011-01-11 09:54:33 -0800716 * 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 */
John Stultz4b413082011-08-10 10:37:59 -0700721static enum alarmtimer_restart alarmtimer_nsleep_wakeup(struct alarm *alarm,
722 ktime_t now)
John Stultz9a7adcf52011-01-11 09:54:33 -0800723{
724 struct task_struct *task = (struct task_struct *)alarm->data;
725
726 alarm->data = NULL;
727 if (task)
728 wake_up_process(task);
John Stultz4b413082011-08-10 10:37:59 -0700729 return ALARMTIMER_NORESTART;
John Stultz9a7adcf52011-01-11 09:54:33 -0800730}
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 */
Al Viro15f27ce2017-06-07 09:42:27 +0100739static int alarmtimer_do_nsleep(struct alarm *alarm, ktime_t absexp,
740 enum alarmtimer_type type)
John Stultz9a7adcf52011-01-11 09:54:33 -0800741{
Al Viroedbeda42017-06-07 09:42:31 +0100742 struct restart_block *restart;
John Stultz9a7adcf52011-01-11 09:54:33 -0800743 alarm->data = (void *)current;
744 do {
745 set_current_state(TASK_INTERRUPTIBLE);
John Stultz9e264762011-08-10 12:09:24 -0700746 alarm_start(alarm, absexp);
John Stultz9a7adcf52011-01-11 09:54:33 -0800747 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
Thomas Gleixnerbd031432018-03-26 15:29:57 +0200755 destroy_hrtimer_on_stack(&alarm->timer);
756
Al Viro15f27ce2017-06-07 09:42:27 +0100757 if (!alarm->data)
John Stultz9a7adcf52011-01-11 09:54:33 -0800758 return 0;
John Stultz9a7adcf52011-01-11 09:54:33 -0800759
Al Viro15f27ce2017-06-07 09:42:27 +0100760 if (freezing(current))
761 alarmtimer_freezerset(absexp, type);
Al Viroedbeda42017-06-07 09:42:31 +0100762 restart = &current->restart_block;
763 if (restart->nanosleep.type != TT_NONE) {
Deepa Dinamanic0edd7c2017-06-24 11:45:06 -0700764 struct timespec64 rmt;
Al Viro15f27ce2017-06-07 09:42:27 +0100765 ktime_t rem;
John Stultz9a7adcf52011-01-11 09:54:33 -0800766
Andrei Vagin41b3b8d2019-11-12 01:26:56 +0000767 rem = ktime_sub(absexp, alarm_bases[type].get_ktime());
John Stultz9a7adcf52011-01-11 09:54:33 -0800768
Al Viro15f27ce2017-06-07 09:42:27 +0100769 if (rem <= 0)
770 return 0;
Deepa Dinamanic0edd7c2017-06-24 11:45:06 -0700771 rmt = ktime_to_timespec64(rem);
Al Viro15f27ce2017-06-07 09:42:27 +0100772
Al Viroce41aaf2017-06-07 09:42:32 +0100773 return nanosleep_copyout(restart, &rmt);
Al Viro15f27ce2017-06-07 09:42:27 +0100774 }
775 return -ERESTART_RESTARTBLOCK;
John Stultz9a7adcf52011-01-11 09:54:33 -0800776}
777
Thomas Gleixnerbd031432018-03-26 15:29:57 +0200778static 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
John Stultz9a7adcf52011-01-11 09:54:33 -0800787/**
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{
Thomas Gleixnerab8177b2011-05-20 13:05:15 +0200795 enum alarmtimer_type type = restart->nanosleep.clockid;
Al Viro15f27ce2017-06-07 09:42:27 +0100796 ktime_t exp = restart->nanosleep.expires;
John Stultz9a7adcf52011-01-11 09:54:33 -0800797 struct alarm alarm;
John Stultz9a7adcf52011-01-11 09:54:33 -0800798
Thomas Gleixnerbd031432018-03-26 15:29:57 +0200799 alarm_init_on_stack(&alarm, type, alarmtimer_nsleep_wakeup);
John Stultz9a7adcf52011-01-11 09:54:33 -0800800
Al Viro15f27ce2017-06-07 09:42:27 +0100801 return alarmtimer_do_nsleep(&alarm, exp, type);
John Stultz9a7adcf52011-01-11 09:54:33 -0800802}
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,
Thomas Gleixner938e7cf2017-06-13 23:34:33 +0200814 const struct timespec64 *tsreq)
John Stultz9a7adcf52011-01-11 09:54:33 -0800815{
816 enum alarmtimer_type type = clock2alarm(which_clock);
Al Viro15f27ce2017-06-07 09:42:27 +0100817 struct restart_block *restart = &current->restart_block;
John Stultz9a7adcf52011-01-11 09:54:33 -0800818 struct alarm alarm;
819 ktime_t exp;
820 int ret = 0;
John Stultz9a7adcf52011-01-11 09:54:33 -0800821
John Stultz1c6b39a2011-06-16 18:47:37 -0700822 if (!alarmtimer_get_rtcdev())
Thadeu Lima de Souza Cascardof18ddc132019-09-03 14:18:02 -0300823 return -EOPNOTSUPP;
John Stultz1c6b39a2011-06-16 18:47:37 -0700824
John Stultz16927772014-07-07 14:06:11 -0700825 if (flags & ~TIMER_ABSTIME)
826 return -EINVAL;
827
John Stultz9a7adcf52011-01-11 09:54:33 -0800828 if (!capable(CAP_WAKE_ALARM))
829 return -EPERM;
830
Thomas Gleixnerbd031432018-03-26 15:29:57 +0200831 alarm_init_on_stack(&alarm, type, alarmtimer_nsleep_wakeup);
John Stultz9a7adcf52011-01-11 09:54:33 -0800832
Deepa Dinamaniad196382017-03-26 12:04:18 -0700833 exp = timespec64_to_ktime(*tsreq);
John Stultz9a7adcf52011-01-11 09:54:33 -0800834 /* Convert (if necessary) to absolute time */
835 if (flags != TIMER_ABSTIME) {
Andrei Vagin41b3b8d2019-11-12 01:26:56 +0000836 ktime_t now = alarm_bases[type].get_ktime();
Thomas Gleixner5f936e12018-07-02 09:34:29 +0200837
838 exp = ktime_add_safe(now, exp);
Andrei Vagin0b9b9a32019-11-12 01:27:04 +0000839 } else {
840 exp = timens_ktime_to_host(which_clock, exp);
John Stultz9a7adcf52011-01-11 09:54:33 -0800841 }
842
Al Viro15f27ce2017-06-07 09:42:27 +0100843 ret = alarmtimer_do_nsleep(&alarm, exp, type);
844 if (ret != -ERESTART_RESTARTBLOCK)
845 return ret;
John Stultz9a7adcf52011-01-11 09:54:33 -0800846
847 /* abs timers don't set remaining time or restart */
Al Viro15f27ce2017-06-07 09:42:27 +0100848 if (flags == TIMER_ABSTIME)
849 return -ERESTARTNOHAND;
John Stultz9a7adcf52011-01-11 09:54:33 -0800850
John Stultz9a7adcf52011-01-11 09:54:33 -0800851 restart->fn = alarm_timer_nsleep_restart;
Thomas Gleixnerab8177b2011-05-20 13:05:15 +0200852 restart->nanosleep.clockid = type;
Thomas Gleixner2456e852016-12-25 11:38:40 +0100853 restart->nanosleep.expires = exp;
John Stultz9a7adcf52011-01-11 09:54:33 -0800854 return ret;
855}
John Stultzff3ead92011-01-11 09:42:13 -0800856
Christoph Hellwigd3ba5a92017-05-26 12:03:11 +0300857const struct k_clock alarm_clock = {
Thomas Gleixnerd653d8452017-05-30 23:15:56 +0200858 .clock_getres = alarm_clock_getres,
Andrei Vagin9c71a2e2019-11-12 01:26:58 +0000859 .clock_get_ktime = alarm_clock_get_ktime,
Andrei Vagineaf80192019-11-12 01:26:55 +0000860 .clock_get_timespec = alarm_clock_get_timespec,
Thomas Gleixnerd653d8452017-05-30 23:15:56 +0200861 .timer_create = alarm_timer_create,
Thomas Gleixnerf2c45802017-05-30 23:15:59 +0200862 .timer_set = common_timer_set,
863 .timer_del = common_timer_del,
864 .timer_get = common_timer_get,
Thomas Gleixnerb3bf6f32017-05-30 23:15:58 +0200865 .timer_arm = alarm_timer_arm,
Thomas Gleixnerd653d8452017-05-30 23:15:56 +0200866 .timer_rearm = alarm_timer_rearm,
867 .timer_forward = alarm_timer_forward,
868 .timer_remaining = alarm_timer_remaining,
Thomas Gleixnere344c9e2017-05-30 23:15:57 +0200869 .timer_try_to_cancel = alarm_timer_try_to_cancel,
Thomas Gleixnerec8f9542019-08-02 07:35:59 +0200870 .timer_wait_running = alarm_timer_wait_running,
Thomas Gleixnerd653d8452017-05-30 23:15:56 +0200871 .nsleep = alarm_timer_nsleep,
Christoph Hellwigd3ba5a92017-05-26 12:03:11 +0300872};
873#endif /* CONFIG_POSIX_TIMERS */
874
John Stultzff3ead92011-01-11 09:42:13 -0800875
876/* Suspend hook structures */
877static const struct dev_pm_ops alarmtimer_pm_ops = {
878 .suspend = alarmtimer_suspend,
zhuo-haoa0e32132015-11-17 20:08:07 +0800879 .resume = alarmtimer_resume,
John Stultzff3ead92011-01-11 09:42:13 -0800880};
881
882static struct platform_driver alarmtimer_driver = {
883 .driver = {
884 .name = "alarmtimer",
885 .pm = &alarmtimer_pm_ops,
886 }
887};
888
Andrei Vagin5a590f32019-11-12 01:27:00 +0000889static void get_boottime_timespec(struct timespec64 *tp)
890{
891 ktime_get_boottime_ts64(tp);
892 timens_add_boottime(tp);
893}
894
John Stultzff3ead92011-01-11 09:42:13 -0800895/**
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{
Stephen Boydc79108b2020-01-23 21:58:46 -0800903 int error;
John Stultzff3ead92011-01-11 09:42:13 -0800904 int i;
John Stultz9a7adcf52011-01-11 09:54:33 -0800905
Thomas Gleixnerc5e14e72012-03-24 12:46:23 +0100906 alarmtimer_rtc_timer_init();
John Stultzad30dfa2012-03-23 15:52:25 -0700907
John Stultzff3ead92011-01-11 09:42:13 -0800908 /* Initialize alarm bases */
909 alarm_bases[ALARM_REALTIME].base_clockid = CLOCK_REALTIME;
Andrei Vagin41b3b8d2019-11-12 01:26:56 +0000910 alarm_bases[ALARM_REALTIME].get_ktime = &ktime_get_real;
Xu Wangec028212020-08-18 06:26:51 +0000911 alarm_bases[ALARM_REALTIME].get_timespec = ktime_get_real_ts64;
John Stultzff3ead92011-01-11 09:42:13 -0800912 alarm_bases[ALARM_BOOTTIME].base_clockid = CLOCK_BOOTTIME;
Andrei Vagin41b3b8d2019-11-12 01:26:56 +0000913 alarm_bases[ALARM_BOOTTIME].get_ktime = &ktime_get_boottime;
Andrei Vagin5a590f32019-11-12 01:27:00 +0000914 alarm_bases[ALARM_BOOTTIME].get_timespec = get_boottime_timespec;
John Stultzff3ead92011-01-11 09:42:13 -0800915 for (i = 0; i < ALARM_NUMTYPE; i++) {
916 timerqueue_init_head(&alarm_bases[i].timerqueue);
917 spin_lock_init(&alarm_bases[i].lock);
John Stultzff3ead92011-01-11 09:42:13 -0800918 }
John Stultz8bc0daf2011-07-14 18:35:13 -0700919
Thomas Gleixner4523f6a2011-09-14 10:54:29 +0200920 error = alarmtimer_rtc_interface_setup();
921 if (error)
922 return error;
John Stultzff3ead92011-01-11 09:42:13 -0800923
Thomas Gleixner4523f6a2011-09-14 10:54:29 +0200924 error = platform_driver_register(&alarmtimer_driver);
925 if (error)
926 goto out_if;
927
Thomas Gleixner4523f6a2011-09-14 10:54:29 +0200928 return 0;
Thomas Gleixner4523f6a2011-09-14 10:54:29 +0200929out_if:
930 alarmtimer_rtc_interface_remove();
John Stultzff3ead92011-01-11 09:42:13 -0800931 return error;
932}
933device_initcall(alarmtimer_init);