blob: fa5de5e8de61d88d266cd2651dedd2090ad89284 [file] [log] [blame]
John Stultzff3ead92011-01-11 09:42:13 -08001/*
2 * Alarmtimer interface
3 *
4 * This interface provides a timer which is similarto hrtimers,
5 * but triggers a RTC alarm if the box is suspend.
6 *
7 * This interface is influenced by the Android RTC Alarm timer
8 * interface.
9 *
10 * Copyright (C) 2010 IBM Corperation
11 *
12 * Author: John Stultz <john.stultz@linaro.org>
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License version 2 as
16 * published by the Free Software Foundation.
17 */
18#include <linux/time.h>
19#include <linux/hrtimer.h>
20#include <linux/timerqueue.h>
21#include <linux/rtc.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010022#include <linux/sched/signal.h>
Ingo Molnarb17b0152017-02-08 18:51:35 +010023#include <linux/sched/debug.h>
John Stultzff3ead92011-01-11 09:42:13 -080024#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>
Al Viroedbeda42017-06-07 09:42:31 +010030#include <linux/compat.h>
Alexandre Belloni51218292017-08-21 00:01:46 +020031#include <linux/module.h>
John Stultzff3ead92011-01-11 09:42:13 -080032
Thomas Gleixnerbab0aae2017-05-30 23:15:41 +020033#include "posix-timers.h"
34
Baolin Wang4a057542016-11-28 14:35:21 -080035#define CREATE_TRACE_POINTS
36#include <trace/events/alarmtimer.h>
37
John Stultz180bf812011-04-28 12:58:11 -070038/**
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
John Stultz180bf812011-04-28 12:58:11 -070042 * @gettime: Function to read the time correlating to the base
43 * @base_clockid: clockid for the base
John Stultz180bf812011-04-28 12:58:11 -070044 */
John Stultzff3ead92011-01-11 09:42:13 -080045static struct alarm_base {
46 spinlock_t lock;
47 struct timerqueue_head timerqueue;
John Stultzff3ead92011-01-11 09:42:13 -080048 ktime_t (*gettime)(void);
49 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
Todd Poynor59a93c22012-08-09 00:37:27 -070061static struct wakeup_source *ws;
62
John Stultz180bf812011-04-28 12:58:11 -070063/* rtc timer and device for setting alarm wakeups at suspend */
Thomas Gleixnerc5e14e72012-03-24 12:46:23 +010064static struct rtc_timer rtctimer;
John Stultzff3ead92011-01-11 09:42:13 -080065static struct rtc_device *rtcdev;
John Stultzc008ba582011-06-16 18:27:09 -070066static DEFINE_SPINLOCK(rtcdev_lock);
John Stultzff3ead92011-01-11 09:42:13 -080067
John Stultzc008ba582011-06-16 18:27:09 -070068/**
John Stultzc008ba582011-06-16 18:27:09 -070069 * 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 */
John Stultz57c498f2012-04-20 12:31:45 -070075struct rtc_device *alarmtimer_get_rtcdev(void)
John Stultzc008ba582011-06-16 18:27:09 -070076{
John Stultzc008ba582011-06-16 18:27:09 -070077 unsigned long flags;
78 struct rtc_device *ret;
79
80 spin_lock_irqsave(&rtcdev_lock, flags);
John Stultzc008ba582011-06-16 18:27:09 -070081 ret = rtcdev;
82 spin_unlock_irqrestore(&rtcdev_lock, flags);
83
84 return ret;
85}
Pramod Gurav71d5d2b2014-06-13 11:49:42 +053086EXPORT_SYMBOL_GPL(alarmtimer_get_rtcdev);
John Stultz8bc0daf2011-07-14 18:35:13 -070087
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);
Geert Uytterhoeven47b4a452017-07-05 14:08:35 +020093 struct wakeup_source *__ws;
John Stultz8bc0daf2011-07-14 18:35:13 -070094
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
Geert Uytterhoeven47b4a452017-07-05 14:08:35 +0200103 __ws = wakeup_source_register("alarmtimer");
104
John Stultz8bc0daf2011-07-14 18:35:13 -0700105 spin_lock_irqsave(&rtcdev_lock, flags);
106 if (!rtcdev) {
Alexandre Belloni51218292017-08-21 00:01:46 +0200107 if (!try_module_get(rtc->owner)) {
108 spin_unlock_irqrestore(&rtcdev_lock, flags);
109 return -1;
110 }
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);
Geert Uytterhoeven47b4a452017-07-05 14:08:35 +0200115 ws = __ws;
116 __ws = NULL;
John Stultz8bc0daf2011-07-14 18:35:13 -0700117 }
118 spin_unlock_irqrestore(&rtcdev_lock, flags);
Geert Uytterhoeven47b4a452017-07-05 14:08:35 +0200119
120 wakeup_source_unregister(__ws);
121
John Stultz8bc0daf2011-07-14 18:35:13 -0700122 return 0;
123}
124
Thomas Gleixnerc5e14e72012-03-24 12:46:23 +0100125static inline void alarmtimer_rtc_timer_init(void)
126{
127 rtc_timer_init(&rtctimer, NULL, NULL);
128}
129
John Stultz8bc0daf2011-07-14 18:35:13 -0700130static struct class_interface alarmtimer_rtc_interface = {
131 .add_dev = &alarmtimer_rtc_add_device,
132};
133
Thomas Gleixner4523f6a2011-09-14 10:54:29 +0200134static int alarmtimer_rtc_interface_setup(void)
John Stultz8bc0daf2011-07-14 18:35:13 -0700135{
136 alarmtimer_rtc_interface.class = rtc_class;
Thomas Gleixner4523f6a2011-09-14 10:54:29 +0200137 return class_interface_register(&alarmtimer_rtc_interface);
138}
139static void alarmtimer_rtc_interface_remove(void)
140{
141 class_interface_unregister(&alarmtimer_rtc_interface);
John Stultz8bc0daf2011-07-14 18:35:13 -0700142}
John Stultz1c6b39a2011-06-16 18:47:37 -0700143#else
John Stultz57c498f2012-04-20 12:31:45 -0700144struct rtc_device *alarmtimer_get_rtcdev(void)
Thomas Gleixner4523f6a2011-09-14 10:54:29 +0200145{
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) { }
Thomas Gleixnerc5e14e72012-03-24 12:46:23 +0100151static inline void alarmtimer_rtc_timer_init(void) { }
John Stultzc008ba582011-06-16 18:27:09 -0700152#endif
John Stultzff3ead92011-01-11 09:42:13 -0800153
John Stultz180bf812011-04-28 12:58:11 -0700154/**
John Stultzff3ead92011-01-11 09:42:13 -0800155 * 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 *
John Stultzdae373b2012-09-13 19:12:16 -0400159 * Adds alarm to a alarm_base timerqueue
John Stultzff3ead92011-01-11 09:42:13 -0800160 *
161 * Must hold base->lock when calling.
162 */
163static void alarmtimer_enqueue(struct alarm_base *base, struct alarm *alarm)
164{
John Stultzdae373b2012-09-13 19:12:16 -0400165 if (alarm->state & ALARMTIMER_STATE_ENQUEUED)
166 timerqueue_del(&base->timerqueue, &alarm->node);
167
John Stultzff3ead92011-01-11 09:42:13 -0800168 timerqueue_add(&base->timerqueue, &alarm->node);
John Stultza28cde82011-08-10 12:30:21 -0700169 alarm->state |= ALARMTIMER_STATE_ENQUEUED;
John Stultzff3ead92011-01-11 09:42:13 -0800170}
171
John Stultz180bf812011-04-28 12:58:11 -0700172/**
John Stultza65bcc12012-09-13 19:25:22 -0400173 * alarmtimer_dequeue - Removes an alarm timer from an alarm_base timerqueue
John Stultzff3ead92011-01-11 09:42:13 -0800174 * @base: pointer to the base where the timer is running
175 * @alarm: pointer to alarm being removed
176 *
John Stultzdae373b2012-09-13 19:12:16 -0400177 * Removes alarm to a alarm_base timerqueue
John Stultzff3ead92011-01-11 09:42:13 -0800178 *
179 * Must hold base->lock when calling.
180 */
John Stultza65bcc12012-09-13 19:25:22 -0400181static void alarmtimer_dequeue(struct alarm_base *base, struct alarm *alarm)
John Stultzff3ead92011-01-11 09:42:13 -0800182{
John Stultza28cde82011-08-10 12:30:21 -0700183 if (!(alarm->state & ALARMTIMER_STATE_ENQUEUED))
184 return;
185
John Stultzff3ead92011-01-11 09:42:13 -0800186 timerqueue_del(&base->timerqueue, &alarm->node);
John Stultza28cde82011-08-10 12:30:21 -0700187 alarm->state &= ~ALARMTIMER_STATE_ENQUEUED;
John Stultzff3ead92011-01-11 09:42:13 -0800188}
189
John Stultz7068b7a2011-04-28 13:29:18 -0700190
John Stultz180bf812011-04-28 12:58:11 -0700191/**
John Stultz7068b7a2011-04-28 13:29:18 -0700192 * alarmtimer_fired - Handles alarm hrtimer being fired.
193 * @timer: pointer to hrtimer being run
John Stultzff3ead92011-01-11 09:42:13 -0800194 *
John Stultz180bf812011-04-28 12:58:11 -0700195 * 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.
John Stultzff3ead92011-01-11 09:42:13 -0800199 */
John Stultz7068b7a2011-04-28 13:29:18 -0700200static enum hrtimer_restart alarmtimer_fired(struct hrtimer *timer)
John Stultzff3ead92011-01-11 09:42:13 -0800201{
John Stultzdae373b2012-09-13 19:12:16 -0400202 struct alarm *alarm = container_of(timer, struct alarm, timer);
203 struct alarm_base *base = &alarm_bases[alarm->type];
John Stultzff3ead92011-01-11 09:42:13 -0800204 unsigned long flags;
John Stultz7068b7a2011-04-28 13:29:18 -0700205 int ret = HRTIMER_NORESTART;
John Stultz54da23b2011-08-10 11:08:07 -0700206 int restart = ALARMTIMER_NORESTART;
John Stultzff3ead92011-01-11 09:42:13 -0800207
208 spin_lock_irqsave(&base->lock, flags);
John Stultza65bcc12012-09-13 19:25:22 -0400209 alarmtimer_dequeue(base, alarm);
John Stultzdae373b2012-09-13 19:12:16 -0400210 spin_unlock_irqrestore(&base->lock, flags);
John Stultzff3ead92011-01-11 09:42:13 -0800211
John Stultzdae373b2012-09-13 19:12:16 -0400212 if (alarm->function)
213 restart = alarm->function(alarm, base->gettime());
John Stultzff3ead92011-01-11 09:42:13 -0800214
John Stultzdae373b2012-09-13 19:12:16 -0400215 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);
John Stultz7068b7a2011-04-28 13:29:18 -0700219 ret = HRTIMER_RESTART;
John Stultzff3ead92011-01-11 09:42:13 -0800220 }
221 spin_unlock_irqrestore(&base->lock, flags);
John Stultzff3ead92011-01-11 09:42:13 -0800222
Baolin Wang4a057542016-11-28 14:35:21 -0800223 trace_alarmtimer_fired(alarm, base->gettime());
John Stultz7068b7a2011-04-28 13:29:18 -0700224 return ret;
John Stultzff3ead92011-01-11 09:42:13 -0800225
John Stultzff3ead92011-01-11 09:42:13 -0800226}
227
Todd Poynor6cffe002013-05-15 14:38:11 -0700228ktime_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}
Marcus Gelderie11682a42013-06-04 09:32:09 +0200233EXPORT_SYMBOL_GPL(alarm_expires_remaining);
Todd Poynor6cffe002013-05-15 14:38:11 -0700234
John Stultz472647d2011-04-29 15:03:10 -0700235#ifdef CONFIG_RTC_CLASS
John Stultz180bf812011-04-28 12:58:11 -0700236/**
John Stultzff3ead92011-01-11 09:42:13 -0800237 * 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{
Baolin Wang4a057542016-11-28 14:35:21 -0800248 ktime_t min, now, expires;
249 int i, ret, type;
John Stultzc008ba582011-06-16 18:27:09 -0700250 struct rtc_device *rtc;
Baolin Wang4a057542016-11-28 14:35:21 -0800251 unsigned long flags;
252 struct rtc_time tm;
John Stultzff3ead92011-01-11 09:42:13 -0800253
254 spin_lock_irqsave(&freezer_delta_lock, flags);
255 min = freezer_delta;
Baolin Wang4a057542016-11-28 14:35:21 -0800256 expires = freezer_expires;
257 type = freezer_alarmtype;
Thomas Gleixner8b0e1952016-12-25 12:30:41 +0100258 freezer_delta = 0;
John Stultzff3ead92011-01-11 09:42:13 -0800259 spin_unlock_irqrestore(&freezer_delta_lock, flags);
260
John Stultz8bc0daf2011-07-14 18:35:13 -0700261 rtc = alarmtimer_get_rtcdev();
John Stultzff3ead92011-01-11 09:42:13 -0800262 /* If we have no rtcdev, just return */
John Stultzc008ba582011-06-16 18:27:09 -0700263 if (!rtc)
John Stultzff3ead92011-01-11 09:42:13 -0800264 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());
Thomas Gleixner2456e852016-12-25 11:38:40 +0100278 if (!min || (delta < min)) {
Baolin Wang4a057542016-11-28 14:35:21 -0800279 expires = next->expires;
John Stultzff3ead92011-01-11 09:42:13 -0800280 min = delta;
Baolin Wang4a057542016-11-28 14:35:21 -0800281 type = i;
282 }
John Stultzff3ead92011-01-11 09:42:13 -0800283 }
Thomas Gleixner2456e852016-12-25 11:38:40 +0100284 if (min == 0)
John Stultzff3ead92011-01-11 09:42:13 -0800285 return 0;
286
Todd Poynor59a93c22012-08-09 00:37:27 -0700287 if (ktime_to_ns(min) < 2 * NSEC_PER_SEC) {
288 __pm_wakeup_event(ws, 2 * MSEC_PER_SEC);
289 return -EBUSY;
290 }
John Stultzff3ead92011-01-11 09:42:13 -0800291
Baolin Wang4a057542016-11-28 14:35:21 -0800292 trace_alarmtimer_suspend(expires, type);
293
John Stultzff3ead92011-01-11 09:42:13 -0800294 /* Setup an rtc timer to fire that far in the future */
John Stultzc008ba582011-06-16 18:27:09 -0700295 rtc_timer_cancel(rtc, &rtctimer);
296 rtc_read_time(rtc, &tm);
John Stultzff3ead92011-01-11 09:42:13 -0800297 now = rtc_tm_to_ktime(tm);
298 now = ktime_add(now, min);
299
Todd Poynor59a93c22012-08-09 00:37:27 -0700300 /* Set alarm, if in the past reject suspend briefly to handle */
Thomas Gleixner8b0e1952016-12-25 12:30:41 +0100301 ret = rtc_timer_start(rtc, &rtctimer, now, 0);
Todd Poynor59a93c22012-08-09 00:37:27 -0700302 if (ret < 0)
303 __pm_wakeup_event(ws, MSEC_PER_SEC);
304 return ret;
John Stultzff3ead92011-01-11 09:42:13 -0800305}
zhuo-haoa0e32132015-11-17 20:08:07 +0800306
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
John Stultz472647d2011-04-29 15:03:10 -0700317#else
318static int alarmtimer_suspend(struct device *dev)
319{
320 return 0;
321}
zhuo-haoa0e32132015-11-17 20:08:07 +0800322
323static int alarmtimer_resume(struct device *dev)
324{
325 return 0;
326}
John Stultz472647d2011-04-29 15:03:10 -0700327#endif
John Stultzff3ead92011-01-11 09:42:13 -0800328
Thomas Gleixnerbd031432018-03-26 15:29:57 +0200329static void
330__alarm_init(struct alarm *alarm, enum alarmtimer_type type,
331 enum alarmtimer_restart (*function)(struct alarm *, ktime_t))
332{
333 timerqueue_init(&alarm->node);
334 alarm->timer.function = alarmtimer_fired;
335 alarm->function = function;
336 alarm->type = type;
337 alarm->state = ALARMTIMER_STATE_INACTIVE;
338}
339
John Stultz180bf812011-04-28 12:58:11 -0700340/**
John Stultzff3ead92011-01-11 09:42:13 -0800341 * alarm_init - Initialize an alarm structure
342 * @alarm: ptr to alarm to be initialized
343 * @type: the type of the alarm
344 * @function: callback that is run when the alarm fires
John Stultzff3ead92011-01-11 09:42:13 -0800345 */
346void alarm_init(struct alarm *alarm, enum alarmtimer_type type,
John Stultz4b413082011-08-10 10:37:59 -0700347 enum alarmtimer_restart (*function)(struct alarm *, ktime_t))
John Stultzff3ead92011-01-11 09:42:13 -0800348{
John Stultzdae373b2012-09-13 19:12:16 -0400349 hrtimer_init(&alarm->timer, alarm_bases[type].base_clockid,
Thomas Gleixnerbd031432018-03-26 15:29:57 +0200350 HRTIMER_MODE_ABS);
351 __alarm_init(alarm, type, function);
John Stultzff3ead92011-01-11 09:42:13 -0800352}
Marcus Gelderie11682a42013-06-04 09:32:09 +0200353EXPORT_SYMBOL_GPL(alarm_init);
John Stultzff3ead92011-01-11 09:42:13 -0800354
John Stultz180bf812011-04-28 12:58:11 -0700355/**
Todd Poynor6cffe002013-05-15 14:38:11 -0700356 * alarm_start - Sets an absolute alarm to fire
John Stultzff3ead92011-01-11 09:42:13 -0800357 * @alarm: ptr to alarm to set
358 * @start: time to run the alarm
John Stultzff3ead92011-01-11 09:42:13 -0800359 */
Thomas Gleixnerb1932172015-04-14 21:09:18 +0000360void alarm_start(struct alarm *alarm, ktime_t start)
John Stultzff3ead92011-01-11 09:42:13 -0800361{
362 struct alarm_base *base = &alarm_bases[alarm->type];
363 unsigned long flags;
364
365 spin_lock_irqsave(&base->lock, flags);
John Stultzff3ead92011-01-11 09:42:13 -0800366 alarm->node.expires = start;
John Stultzff3ead92011-01-11 09:42:13 -0800367 alarmtimer_enqueue(base, alarm);
Thomas Gleixnerb1932172015-04-14 21:09:18 +0000368 hrtimer_start(&alarm->timer, alarm->node.expires, HRTIMER_MODE_ABS);
John Stultzff3ead92011-01-11 09:42:13 -0800369 spin_unlock_irqrestore(&base->lock, flags);
Baolin Wang4a057542016-11-28 14:35:21 -0800370
371 trace_alarmtimer_start(alarm, base->gettime());
John Stultzff3ead92011-01-11 09:42:13 -0800372}
Marcus Gelderie11682a42013-06-04 09:32:09 +0200373EXPORT_SYMBOL_GPL(alarm_start);
John Stultzff3ead92011-01-11 09:42:13 -0800374
John Stultz180bf812011-04-28 12:58:11 -0700375/**
Todd Poynor6cffe002013-05-15 14:38:11 -0700376 * alarm_start_relative - Sets a relative alarm to fire
377 * @alarm: ptr to alarm to set
378 * @start: time relative to now to run the alarm
379 */
Thomas Gleixnerb1932172015-04-14 21:09:18 +0000380void alarm_start_relative(struct alarm *alarm, ktime_t start)
Todd Poynor6cffe002013-05-15 14:38:11 -0700381{
382 struct alarm_base *base = &alarm_bases[alarm->type];
383
Thomas Gleixnerf4781e72017-05-30 23:15:34 +0200384 start = ktime_add_safe(start, base->gettime());
Thomas Gleixnerb1932172015-04-14 21:09:18 +0000385 alarm_start(alarm, start);
Todd Poynor6cffe002013-05-15 14:38:11 -0700386}
Marcus Gelderie11682a42013-06-04 09:32:09 +0200387EXPORT_SYMBOL_GPL(alarm_start_relative);
Todd Poynor6cffe002013-05-15 14:38:11 -0700388
389void alarm_restart(struct alarm *alarm)
390{
391 struct alarm_base *base = &alarm_bases[alarm->type];
392 unsigned long flags;
393
394 spin_lock_irqsave(&base->lock, flags);
395 hrtimer_set_expires(&alarm->timer, alarm->node.expires);
396 hrtimer_restart(&alarm->timer);
397 alarmtimer_enqueue(base, alarm);
398 spin_unlock_irqrestore(&base->lock, flags);
399}
Marcus Gelderie11682a42013-06-04 09:32:09 +0200400EXPORT_SYMBOL_GPL(alarm_restart);
Todd Poynor6cffe002013-05-15 14:38:11 -0700401
402/**
John Stultz9082c462011-08-10 12:41:36 -0700403 * alarm_try_to_cancel - Tries to cancel an alarm timer
John Stultzff3ead92011-01-11 09:42:13 -0800404 * @alarm: ptr to alarm to be canceled
John Stultz9082c462011-08-10 12:41:36 -0700405 *
406 * Returns 1 if the timer was canceled, 0 if it was not running,
407 * and -1 if the callback was running
John Stultzff3ead92011-01-11 09:42:13 -0800408 */
John Stultz9082c462011-08-10 12:41:36 -0700409int alarm_try_to_cancel(struct alarm *alarm)
John Stultzff3ead92011-01-11 09:42:13 -0800410{
411 struct alarm_base *base = &alarm_bases[alarm->type];
412 unsigned long flags;
John Stultzdae373b2012-09-13 19:12:16 -0400413 int ret;
414
John Stultzff3ead92011-01-11 09:42:13 -0800415 spin_lock_irqsave(&base->lock, flags);
John Stultzdae373b2012-09-13 19:12:16 -0400416 ret = hrtimer_try_to_cancel(&alarm->timer);
417 if (ret >= 0)
John Stultza65bcc12012-09-13 19:25:22 -0400418 alarmtimer_dequeue(base, alarm);
John Stultzff3ead92011-01-11 09:42:13 -0800419 spin_unlock_irqrestore(&base->lock, flags);
Baolin Wang4a057542016-11-28 14:35:21 -0800420
421 trace_alarmtimer_cancel(alarm, base->gettime());
John Stultz9082c462011-08-10 12:41:36 -0700422 return ret;
John Stultzff3ead92011-01-11 09:42:13 -0800423}
Marcus Gelderie11682a42013-06-04 09:32:09 +0200424EXPORT_SYMBOL_GPL(alarm_try_to_cancel);
John Stultzff3ead92011-01-11 09:42:13 -0800425
426
John Stultz9082c462011-08-10 12:41:36 -0700427/**
428 * alarm_cancel - Spins trying to cancel an alarm timer until it is done
429 * @alarm: ptr to alarm to be canceled
430 *
431 * Returns 1 if the timer was canceled, 0 if it was not active.
432 */
433int alarm_cancel(struct alarm *alarm)
434{
435 for (;;) {
436 int ret = alarm_try_to_cancel(alarm);
437 if (ret >= 0)
438 return ret;
439 cpu_relax();
440 }
441}
Marcus Gelderie11682a42013-06-04 09:32:09 +0200442EXPORT_SYMBOL_GPL(alarm_cancel);
John Stultz9082c462011-08-10 12:41:36 -0700443
John Stultzdce75a82011-08-10 11:31:03 -0700444
445u64 alarm_forward(struct alarm *alarm, ktime_t now, ktime_t interval)
446{
447 u64 overrun = 1;
448 ktime_t delta;
449
450 delta = ktime_sub(now, alarm->node.expires);
451
Thomas Gleixner2456e852016-12-25 11:38:40 +0100452 if (delta < 0)
John Stultzdce75a82011-08-10 11:31:03 -0700453 return 0;
454
Thomas Gleixner2456e852016-12-25 11:38:40 +0100455 if (unlikely(delta >= interval)) {
John Stultzdce75a82011-08-10 11:31:03 -0700456 s64 incr = ktime_to_ns(interval);
457
458 overrun = ktime_divns(delta, incr);
459
460 alarm->node.expires = ktime_add_ns(alarm->node.expires,
461 incr*overrun);
462
Thomas Gleixner2456e852016-12-25 11:38:40 +0100463 if (alarm->node.expires > now)
John Stultzdce75a82011-08-10 11:31:03 -0700464 return overrun;
465 /*
466 * This (and the ktime_add() below) is the
467 * correction for exact:
468 */
469 overrun++;
470 }
471
Thomas Gleixnerf4781e72017-05-30 23:15:34 +0200472 alarm->node.expires = ktime_add_safe(alarm->node.expires, interval);
John Stultzdce75a82011-08-10 11:31:03 -0700473 return overrun;
474}
Marcus Gelderie11682a42013-06-04 09:32:09 +0200475EXPORT_SYMBOL_GPL(alarm_forward);
John Stultzdce75a82011-08-10 11:31:03 -0700476
Todd Poynor6cffe002013-05-15 14:38:11 -0700477u64 alarm_forward_now(struct alarm *alarm, ktime_t interval)
478{
479 struct alarm_base *base = &alarm_bases[alarm->type];
480
481 return alarm_forward(alarm, base->gettime(), interval);
482}
Marcus Gelderie11682a42013-06-04 09:32:09 +0200483EXPORT_SYMBOL_GPL(alarm_forward_now);
John Stultzdce75a82011-08-10 11:31:03 -0700484
Christoph Hellwigd3ba5a92017-05-26 12:03:11 +0300485#ifdef CONFIG_POSIX_TIMERS
486
487static void alarmtimer_freezerset(ktime_t absexp, enum alarmtimer_type type)
488{
489 struct alarm_base *base;
490 unsigned long flags;
491 ktime_t delta;
492
493 switch(type) {
494 case ALARM_REALTIME:
495 base = &alarm_bases[ALARM_REALTIME];
496 type = ALARM_REALTIME_FREEZER;
497 break;
498 case ALARM_BOOTTIME:
499 base = &alarm_bases[ALARM_BOOTTIME];
500 type = ALARM_BOOTTIME_FREEZER;
501 break;
502 default:
503 WARN_ONCE(1, "Invalid alarm type: %d\n", type);
504 return;
505 }
506
507 delta = ktime_sub(absexp, base->gettime());
508
509 spin_lock_irqsave(&freezer_delta_lock, flags);
510 if (!freezer_delta || (delta < freezer_delta)) {
511 freezer_delta = delta;
512 freezer_expires = absexp;
513 freezer_alarmtype = type;
514 }
515 spin_unlock_irqrestore(&freezer_delta_lock, flags);
516}
John Stultzdce75a82011-08-10 11:31:03 -0700517
John Stultz180bf812011-04-28 12:58:11 -0700518/**
John Stultz9a7adcf52011-01-11 09:54:33 -0800519 * clock2alarm - helper that converts from clockid to alarmtypes
520 * @clockid: clockid.
John Stultz9a7adcf52011-01-11 09:54:33 -0800521 */
522static enum alarmtimer_type clock2alarm(clockid_t clockid)
523{
524 if (clockid == CLOCK_REALTIME_ALARM)
525 return ALARM_REALTIME;
526 if (clockid == CLOCK_BOOTTIME_ALARM)
527 return ALARM_BOOTTIME;
528 return -1;
529}
530
John Stultz180bf812011-04-28 12:58:11 -0700531/**
John Stultz9a7adcf52011-01-11 09:54:33 -0800532 * alarm_handle_timer - Callback for posix timers
533 * @alarm: alarm that fired
534 *
535 * Posix timer callback for expired alarm timers.
536 */
John Stultz4b413082011-08-10 10:37:59 -0700537static enum alarmtimer_restart alarm_handle_timer(struct alarm *alarm,
538 ktime_t now)
John Stultz9a7adcf52011-01-11 09:54:33 -0800539{
540 struct k_itimer *ptr = container_of(alarm, struct k_itimer,
Thomas Gleixnerf2c45802017-05-30 23:15:59 +0200541 it.alarm.alarmtimer);
Richard Larocque474e941b2014-09-09 18:31:05 -0700542 enum alarmtimer_restart result = ALARMTIMER_NORESTART;
Thomas Gleixnerf2c45802017-05-30 23:15:59 +0200543 unsigned long flags;
544 int si_private = 0;
Richard Larocque474e941b2014-09-09 18:31:05 -0700545
546 spin_lock_irqsave(&ptr->it_lock, flags);
John Stultz4b413082011-08-10 10:37:59 -0700547
Thomas Gleixnerf2c45802017-05-30 23:15:59 +0200548 ptr->it_active = 0;
549 if (ptr->it_interval)
550 si_private = ++ptr->it_requeue_pending;
551
552 if (posix_timer_event(ptr, si_private) && ptr->it_interval) {
553 /*
554 * Handle ignored signals and rearm the timer. This will go
555 * away once we handle ignored signals proper.
556 */
557 ptr->it_overrun += alarm_forward_now(alarm, ptr->it_interval);
558 ++ptr->it_requeue_pending;
559 ptr->it_active = 1;
Richard Larocque474e941b2014-09-09 18:31:05 -0700560 result = ALARMTIMER_RESTART;
John Stultz54da23b2011-08-10 11:08:07 -0700561 }
Richard Larocque474e941b2014-09-09 18:31:05 -0700562 spin_unlock_irqrestore(&ptr->it_lock, flags);
563
564 return result;
John Stultz9a7adcf52011-01-11 09:54:33 -0800565}
566
John Stultz180bf812011-04-28 12:58:11 -0700567/**
Thomas Gleixnerb3db80f2017-05-30 23:15:54 +0200568 * alarm_timer_rearm - Posix timer callback for rearming timer
569 * @timr: Pointer to the posixtimer data struct
570 */
571static void alarm_timer_rearm(struct k_itimer *timr)
572{
573 struct alarm *alarm = &timr->it.alarm.alarmtimer;
574
575 timr->it_overrun += alarm_forward_now(alarm, timr->it_interval);
576 alarm_start(alarm, alarm->node.expires);
577}
578
579/**
Thomas Gleixnere7561f12017-05-30 23:15:55 +0200580 * alarm_timer_forward - Posix timer callback for forwarding timer
581 * @timr: Pointer to the posixtimer data struct
582 * @now: Current time to forward the timer against
583 */
Thomas Gleixner6fec64e2018-06-26 15:21:31 +0200584static s64 alarm_timer_forward(struct k_itimer *timr, ktime_t now)
Thomas Gleixnere7561f12017-05-30 23:15:55 +0200585{
586 struct alarm *alarm = &timr->it.alarm.alarmtimer;
587
Thomas Gleixner6fec64e2018-06-26 15:21:31 +0200588 return alarm_forward(alarm, timr->it_interval, now);
Thomas Gleixnere7561f12017-05-30 23:15:55 +0200589}
590
591/**
Thomas Gleixnerd653d8452017-05-30 23:15:56 +0200592 * alarm_timer_remaining - Posix timer callback to retrieve remaining time
593 * @timr: Pointer to the posixtimer data struct
594 * @now: Current time to calculate against
595 */
596static ktime_t alarm_timer_remaining(struct k_itimer *timr, ktime_t now)
597{
598 struct alarm *alarm = &timr->it.alarm.alarmtimer;
599
600 return ktime_sub(now, alarm->node.expires);
601}
602
603/**
Thomas Gleixnere344c9e2017-05-30 23:15:57 +0200604 * alarm_timer_try_to_cancel - Posix timer callback to cancel a timer
605 * @timr: Pointer to the posixtimer data struct
606 */
607static int alarm_timer_try_to_cancel(struct k_itimer *timr)
608{
609 return alarm_try_to_cancel(&timr->it.alarm.alarmtimer);
610}
611
612/**
Thomas Gleixnerb3bf6f32017-05-30 23:15:58 +0200613 * alarm_timer_arm - Posix timer callback to arm a timer
614 * @timr: Pointer to the posixtimer data struct
615 * @expires: The new expiry time
616 * @absolute: Expiry value is absolute time
617 * @sigev_none: Posix timer does not deliver signals
618 */
619static void alarm_timer_arm(struct k_itimer *timr, ktime_t expires,
620 bool absolute, bool sigev_none)
621{
622 struct alarm *alarm = &timr->it.alarm.alarmtimer;
623 struct alarm_base *base = &alarm_bases[alarm->type];
624
625 if (!absolute)
626 expires = ktime_add_safe(expires, base->gettime());
627 if (sigev_none)
628 alarm->node.expires = expires;
629 else
630 alarm_start(&timr->it.alarm.alarmtimer, expires);
631}
632
633/**
John Stultz9a7adcf52011-01-11 09:54:33 -0800634 * alarm_clock_getres - posix getres interface
635 * @which_clock: clockid
636 * @tp: timespec to fill
637 *
638 * Returns the granularity of underlying alarm base clock
639 */
Deepa Dinamanid2e3e0c2017-03-26 12:04:15 -0700640static int alarm_clock_getres(const clockid_t which_clock, struct timespec64 *tp)
John Stultz9a7adcf52011-01-11 09:54:33 -0800641{
John Stultz1c6b39a2011-06-16 18:47:37 -0700642 if (!alarmtimer_get_rtcdev())
KOSAKI Motohiro98d6f4d2013-10-14 17:33:16 -0400643 return -EINVAL;
John Stultz1c6b39a2011-06-16 18:47:37 -0700644
Thomas Gleixner056a3ca2015-04-14 21:08:32 +0000645 tp->tv_sec = 0;
646 tp->tv_nsec = hrtimer_resolution;
647 return 0;
John Stultz9a7adcf52011-01-11 09:54:33 -0800648}
649
650/**
651 * alarm_clock_get - posix clock_get interface
652 * @which_clock: clockid
653 * @tp: timespec to fill.
654 *
655 * Provides the underlying alarm base time.
656 */
Deepa Dinamani3c9c12f2017-03-26 12:04:14 -0700657static int alarm_clock_get(clockid_t which_clock, struct timespec64 *tp)
John Stultz9a7adcf52011-01-11 09:54:33 -0800658{
659 struct alarm_base *base = &alarm_bases[clock2alarm(which_clock)];
660
John Stultz1c6b39a2011-06-16 18:47:37 -0700661 if (!alarmtimer_get_rtcdev())
KOSAKI Motohiro98d6f4d2013-10-14 17:33:16 -0400662 return -EINVAL;
John Stultz1c6b39a2011-06-16 18:47:37 -0700663
Deepa Dinamani3c9c12f2017-03-26 12:04:14 -0700664 *tp = ktime_to_timespec64(base->gettime());
John Stultz9a7adcf52011-01-11 09:54:33 -0800665 return 0;
666}
667
668/**
669 * alarm_timer_create - posix timer_create interface
670 * @new_timer: k_itimer pointer to manage
671 *
672 * Initializes the k_itimer structure.
673 */
674static int alarm_timer_create(struct k_itimer *new_timer)
675{
676 enum alarmtimer_type type;
John Stultz9a7adcf52011-01-11 09:54:33 -0800677
John Stultz1c6b39a2011-06-16 18:47:37 -0700678 if (!alarmtimer_get_rtcdev())
679 return -ENOTSUPP;
680
John Stultz9a7adcf52011-01-11 09:54:33 -0800681 if (!capable(CAP_WAKE_ALARM))
682 return -EPERM;
683
684 type = clock2alarm(new_timer->it_clock);
John Stultz9e264762011-08-10 12:09:24 -0700685 alarm_init(&new_timer->it.alarm.alarmtimer, type, alarm_handle_timer);
John Stultz9a7adcf52011-01-11 09:54:33 -0800686 return 0;
687}
688
689/**
John Stultz9a7adcf52011-01-11 09:54:33 -0800690 * alarmtimer_nsleep_wakeup - Wakeup function for alarm_timer_nsleep
691 * @alarm: ptr to alarm that fired
692 *
693 * Wakes up the task that set the alarmtimer
694 */
John Stultz4b413082011-08-10 10:37:59 -0700695static enum alarmtimer_restart alarmtimer_nsleep_wakeup(struct alarm *alarm,
696 ktime_t now)
John Stultz9a7adcf52011-01-11 09:54:33 -0800697{
698 struct task_struct *task = (struct task_struct *)alarm->data;
699
700 alarm->data = NULL;
701 if (task)
702 wake_up_process(task);
John Stultz4b413082011-08-10 10:37:59 -0700703 return ALARMTIMER_NORESTART;
John Stultz9a7adcf52011-01-11 09:54:33 -0800704}
705
706/**
707 * alarmtimer_do_nsleep - Internal alarmtimer nsleep implementation
708 * @alarm: ptr to alarmtimer
709 * @absexp: absolute expiration time
710 *
711 * Sets the alarm timer and sleeps until it is fired or interrupted.
712 */
Al Viro15f27ce2017-06-07 09:42:27 +0100713static int alarmtimer_do_nsleep(struct alarm *alarm, ktime_t absexp,
714 enum alarmtimer_type type)
John Stultz9a7adcf52011-01-11 09:54:33 -0800715{
Al Viroedbeda42017-06-07 09:42:31 +0100716 struct restart_block *restart;
John Stultz9a7adcf52011-01-11 09:54:33 -0800717 alarm->data = (void *)current;
718 do {
719 set_current_state(TASK_INTERRUPTIBLE);
John Stultz9e264762011-08-10 12:09:24 -0700720 alarm_start(alarm, absexp);
John Stultz9a7adcf52011-01-11 09:54:33 -0800721 if (likely(alarm->data))
722 schedule();
723
724 alarm_cancel(alarm);
725 } while (alarm->data && !signal_pending(current));
726
727 __set_current_state(TASK_RUNNING);
728
Thomas Gleixnerbd031432018-03-26 15:29:57 +0200729 destroy_hrtimer_on_stack(&alarm->timer);
730
Al Viro15f27ce2017-06-07 09:42:27 +0100731 if (!alarm->data)
John Stultz9a7adcf52011-01-11 09:54:33 -0800732 return 0;
John Stultz9a7adcf52011-01-11 09:54:33 -0800733
Al Viro15f27ce2017-06-07 09:42:27 +0100734 if (freezing(current))
735 alarmtimer_freezerset(absexp, type);
Al Viroedbeda42017-06-07 09:42:31 +0100736 restart = &current->restart_block;
737 if (restart->nanosleep.type != TT_NONE) {
Deepa Dinamanic0edd7c2017-06-24 11:45:06 -0700738 struct timespec64 rmt;
Al Viro15f27ce2017-06-07 09:42:27 +0100739 ktime_t rem;
John Stultz9a7adcf52011-01-11 09:54:33 -0800740
Al Viro15f27ce2017-06-07 09:42:27 +0100741 rem = ktime_sub(absexp, alarm_bases[type].gettime());
John Stultz9a7adcf52011-01-11 09:54:33 -0800742
Al Viro15f27ce2017-06-07 09:42:27 +0100743 if (rem <= 0)
744 return 0;
Deepa Dinamanic0edd7c2017-06-24 11:45:06 -0700745 rmt = ktime_to_timespec64(rem);
Al Viro15f27ce2017-06-07 09:42:27 +0100746
Al Viroce41aaf2017-06-07 09:42:32 +0100747 return nanosleep_copyout(restart, &rmt);
Al Viro15f27ce2017-06-07 09:42:27 +0100748 }
749 return -ERESTART_RESTARTBLOCK;
John Stultz9a7adcf52011-01-11 09:54:33 -0800750}
751
Thomas Gleixnerbd031432018-03-26 15:29:57 +0200752static void
753alarm_init_on_stack(struct alarm *alarm, enum alarmtimer_type type,
754 enum alarmtimer_restart (*function)(struct alarm *, ktime_t))
755{
756 hrtimer_init_on_stack(&alarm->timer, alarm_bases[type].base_clockid,
757 HRTIMER_MODE_ABS);
758 __alarm_init(alarm, type, function);
759}
760
John Stultz9a7adcf52011-01-11 09:54:33 -0800761/**
762 * alarm_timer_nsleep_restart - restartblock alarmtimer nsleep
763 * @restart: ptr to restart block
764 *
765 * Handles restarted clock_nanosleep calls
766 */
767static long __sched alarm_timer_nsleep_restart(struct restart_block *restart)
768{
Thomas Gleixnerab8177b2011-05-20 13:05:15 +0200769 enum alarmtimer_type type = restart->nanosleep.clockid;
Al Viro15f27ce2017-06-07 09:42:27 +0100770 ktime_t exp = restart->nanosleep.expires;
John Stultz9a7adcf52011-01-11 09:54:33 -0800771 struct alarm alarm;
John Stultz9a7adcf52011-01-11 09:54:33 -0800772
Thomas Gleixnerbd031432018-03-26 15:29:57 +0200773 alarm_init_on_stack(&alarm, type, alarmtimer_nsleep_wakeup);
John Stultz9a7adcf52011-01-11 09:54:33 -0800774
Al Viro15f27ce2017-06-07 09:42:27 +0100775 return alarmtimer_do_nsleep(&alarm, exp, type);
John Stultz9a7adcf52011-01-11 09:54:33 -0800776}
777
778/**
779 * alarm_timer_nsleep - alarmtimer nanosleep
780 * @which_clock: clockid
781 * @flags: determins abstime or relative
782 * @tsreq: requested sleep time (abs or rel)
783 * @rmtp: remaining sleep time saved
784 *
785 * Handles clock_nanosleep calls against _ALARM clockids
786 */
787static int alarm_timer_nsleep(const clockid_t which_clock, int flags,
Thomas Gleixner938e7cf2017-06-13 23:34:33 +0200788 const struct timespec64 *tsreq)
John Stultz9a7adcf52011-01-11 09:54:33 -0800789{
790 enum alarmtimer_type type = clock2alarm(which_clock);
Al Viro15f27ce2017-06-07 09:42:27 +0100791 struct restart_block *restart = &current->restart_block;
John Stultz9a7adcf52011-01-11 09:54:33 -0800792 struct alarm alarm;
793 ktime_t exp;
794 int ret = 0;
John Stultz9a7adcf52011-01-11 09:54:33 -0800795
John Stultz1c6b39a2011-06-16 18:47:37 -0700796 if (!alarmtimer_get_rtcdev())
797 return -ENOTSUPP;
798
John Stultz16927772014-07-07 14:06:11 -0700799 if (flags & ~TIMER_ABSTIME)
800 return -EINVAL;
801
John Stultz9a7adcf52011-01-11 09:54:33 -0800802 if (!capable(CAP_WAKE_ALARM))
803 return -EPERM;
804
Thomas Gleixnerbd031432018-03-26 15:29:57 +0200805 alarm_init_on_stack(&alarm, type, alarmtimer_nsleep_wakeup);
John Stultz9a7adcf52011-01-11 09:54:33 -0800806
Deepa Dinamaniad196382017-03-26 12:04:18 -0700807 exp = timespec64_to_ktime(*tsreq);
John Stultz9a7adcf52011-01-11 09:54:33 -0800808 /* Convert (if necessary) to absolute time */
809 if (flags != TIMER_ABSTIME) {
810 ktime_t now = alarm_bases[type].gettime();
Thomas Gleixner5f936e12018-07-02 09:34:29 +0200811
812 exp = ktime_add_safe(now, exp);
John Stultz9a7adcf52011-01-11 09:54:33 -0800813 }
814
Al Viro15f27ce2017-06-07 09:42:27 +0100815 ret = alarmtimer_do_nsleep(&alarm, exp, type);
816 if (ret != -ERESTART_RESTARTBLOCK)
817 return ret;
John Stultz9a7adcf52011-01-11 09:54:33 -0800818
819 /* abs timers don't set remaining time or restart */
Al Viro15f27ce2017-06-07 09:42:27 +0100820 if (flags == TIMER_ABSTIME)
821 return -ERESTARTNOHAND;
John Stultz9a7adcf52011-01-11 09:54:33 -0800822
John Stultz9a7adcf52011-01-11 09:54:33 -0800823 restart->fn = alarm_timer_nsleep_restart;
Thomas Gleixnerab8177b2011-05-20 13:05:15 +0200824 restart->nanosleep.clockid = type;
Thomas Gleixner2456e852016-12-25 11:38:40 +0100825 restart->nanosleep.expires = exp;
John Stultz9a7adcf52011-01-11 09:54:33 -0800826 return ret;
827}
John Stultzff3ead92011-01-11 09:42:13 -0800828
Christoph Hellwigd3ba5a92017-05-26 12:03:11 +0300829const struct k_clock alarm_clock = {
Thomas Gleixnerd653d8452017-05-30 23:15:56 +0200830 .clock_getres = alarm_clock_getres,
831 .clock_get = alarm_clock_get,
832 .timer_create = alarm_timer_create,
Thomas Gleixnerf2c45802017-05-30 23:15:59 +0200833 .timer_set = common_timer_set,
834 .timer_del = common_timer_del,
835 .timer_get = common_timer_get,
Thomas Gleixnerb3bf6f32017-05-30 23:15:58 +0200836 .timer_arm = alarm_timer_arm,
Thomas Gleixnerd653d8452017-05-30 23:15:56 +0200837 .timer_rearm = alarm_timer_rearm,
838 .timer_forward = alarm_timer_forward,
839 .timer_remaining = alarm_timer_remaining,
Thomas Gleixnere344c9e2017-05-30 23:15:57 +0200840 .timer_try_to_cancel = alarm_timer_try_to_cancel,
Thomas Gleixnerd653d8452017-05-30 23:15:56 +0200841 .nsleep = alarm_timer_nsleep,
Christoph Hellwigd3ba5a92017-05-26 12:03:11 +0300842};
843#endif /* CONFIG_POSIX_TIMERS */
844
John Stultzff3ead92011-01-11 09:42:13 -0800845
846/* Suspend hook structures */
847static const struct dev_pm_ops alarmtimer_pm_ops = {
848 .suspend = alarmtimer_suspend,
zhuo-haoa0e32132015-11-17 20:08:07 +0800849 .resume = alarmtimer_resume,
John Stultzff3ead92011-01-11 09:42:13 -0800850};
851
852static struct platform_driver alarmtimer_driver = {
853 .driver = {
854 .name = "alarmtimer",
855 .pm = &alarmtimer_pm_ops,
856 }
857};
858
859/**
860 * alarmtimer_init - Initialize alarm timer code
861 *
862 * This function initializes the alarm bases and registers
863 * the posix clock ids.
864 */
865static int __init alarmtimer_init(void)
866{
Thomas Gleixner4523f6a2011-09-14 10:54:29 +0200867 struct platform_device *pdev;
John Stultzff3ead92011-01-11 09:42:13 -0800868 int error = 0;
869 int i;
John Stultz9a7adcf52011-01-11 09:54:33 -0800870
Thomas Gleixnerc5e14e72012-03-24 12:46:23 +0100871 alarmtimer_rtc_timer_init();
John Stultzad30dfa2012-03-23 15:52:25 -0700872
John Stultzff3ead92011-01-11 09:42:13 -0800873 /* Initialize alarm bases */
874 alarm_bases[ALARM_REALTIME].base_clockid = CLOCK_REALTIME;
875 alarm_bases[ALARM_REALTIME].gettime = &ktime_get_real;
876 alarm_bases[ALARM_BOOTTIME].base_clockid = CLOCK_BOOTTIME;
877 alarm_bases[ALARM_BOOTTIME].gettime = &ktime_get_boottime;
878 for (i = 0; i < ALARM_NUMTYPE; i++) {
879 timerqueue_init_head(&alarm_bases[i].timerqueue);
880 spin_lock_init(&alarm_bases[i].lock);
John Stultzff3ead92011-01-11 09:42:13 -0800881 }
John Stultz8bc0daf2011-07-14 18:35:13 -0700882
Thomas Gleixner4523f6a2011-09-14 10:54:29 +0200883 error = alarmtimer_rtc_interface_setup();
884 if (error)
885 return error;
John Stultzff3ead92011-01-11 09:42:13 -0800886
Thomas Gleixner4523f6a2011-09-14 10:54:29 +0200887 error = platform_driver_register(&alarmtimer_driver);
888 if (error)
889 goto out_if;
890
891 pdev = platform_device_register_simple("alarmtimer", -1, NULL, 0);
892 if (IS_ERR(pdev)) {
893 error = PTR_ERR(pdev);
894 goto out_drv;
895 }
896 return 0;
897
898out_drv:
899 platform_driver_unregister(&alarmtimer_driver);
900out_if:
901 alarmtimer_rtc_interface_remove();
John Stultzff3ead92011-01-11 09:42:13 -0800902 return error;
903}
904device_initcall(alarmtimer_init);