1 // SPDX-License-Identifier: GPL-2.0
5 * This interface provides a timer which is similar to hrtimers,
6 * but triggers a RTC alarm if the box is suspend.
8 * This interface is influenced by the Android RTC Alarm timer
11 * Copyright (C) 2010 IBM Corporation
15 #include <linux/time.h>
16 #include <linux/hrtimer.h>
17 #include <linux/timerqueue.h>
18 #include <linux/rtc.h>
19 #include <linux/sched/signal.h>
20 #include <linux/sched/debug.h>
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>
27 #include <linux/compat.h>
28 #include <linux/module.h>
29 #include <linux/time_namespace.h>
31 #include "posix-timers.h"
33 #define CREATE_TRACE_POINTS
34 #include <trace/events/alarmtimer.h>
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
40 * @get_ktime: Function to read the time correlating to the base
41 * @get_timespec: Function to read the namespace time correlating to the base
42 * @base_clockid: clockid for the base
44 static struct alarm_base {
46 struct timerqueue_head timerqueue;
47 ktime_t (*get_ktime)(void);
48 void (*get_timespec)(struct timespec64 *tp);
49 clockid_t base_clockid;
50 } alarm_bases[ALARM_NUMTYPE];
52 #if defined(CONFIG_POSIX_TIMERS) || defined(CONFIG_RTC_CLASS)
53 /* freezer information to handle clock_nanosleep triggered wakeups */
54 static enum alarmtimer_type freezer_alarmtype;
55 static ktime_t freezer_expires;
56 static ktime_t freezer_delta;
57 static DEFINE_SPINLOCK(freezer_delta_lock);
60 #ifdef CONFIG_RTC_CLASS
61 /* rtc timer and device for setting alarm wakeups at suspend */
62 static struct rtc_timer rtctimer;
63 static struct rtc_device *rtcdev;
64 static DEFINE_SPINLOCK(rtcdev_lock);
67 * alarmtimer_get_rtcdev - Return selected rtcdevice
69 * This function returns the rtc device to use for wakealarms.
71 struct rtc_device *alarmtimer_get_rtcdev(void)
74 struct rtc_device *ret;
76 spin_lock_irqsave(&rtcdev_lock, flags);
78 spin_unlock_irqrestore(&rtcdev_lock, flags);
82 EXPORT_SYMBOL_GPL(alarmtimer_get_rtcdev);
84 static int alarmtimer_rtc_add_device(struct device *dev)
87 struct rtc_device *rtc = to_rtc_device(dev);
88 struct platform_device *pdev;
94 if (!test_bit(RTC_FEATURE_ALARM, rtc->features))
96 if (!device_may_wakeup(rtc->dev.parent))
99 pdev = platform_device_register_data(dev, "alarmtimer",
100 PLATFORM_DEVID_AUTO, NULL, 0);
102 device_init_wakeup(&pdev->dev, true);
104 spin_lock_irqsave(&rtcdev_lock, flags);
105 if (!IS_ERR(pdev) && !rtcdev) {
106 if (!try_module_get(rtc->owner)) {
112 /* hold a reference so it doesn't go away */
119 spin_unlock_irqrestore(&rtcdev_lock, flags);
121 platform_device_unregister(pdev);
126 static inline void alarmtimer_rtc_timer_init(void)
128 rtc_timer_init(&rtctimer, NULL, NULL);
131 static struct class_interface alarmtimer_rtc_interface = {
132 .add_dev = &alarmtimer_rtc_add_device,
135 static int alarmtimer_rtc_interface_setup(void)
137 alarmtimer_rtc_interface.class = &rtc_class;
138 return class_interface_register(&alarmtimer_rtc_interface);
140 static void alarmtimer_rtc_interface_remove(void)
142 class_interface_unregister(&alarmtimer_rtc_interface);
145 static inline int alarmtimer_rtc_interface_setup(void) { return 0; }
146 static inline void alarmtimer_rtc_interface_remove(void) { }
147 static inline void alarmtimer_rtc_timer_init(void) { }
151 * alarmtimer_enqueue - Adds an alarm timer to an alarm_base timerqueue
152 * @base: pointer to the base where the timer is being run
153 * @alarm: pointer to alarm being enqueued.
155 * Adds alarm to a alarm_base timerqueue
157 * Must hold base->lock when calling.
159 static void alarmtimer_enqueue(struct alarm_base *base, struct alarm *alarm)
161 if (alarm->state & ALARMTIMER_STATE_ENQUEUED)
162 timerqueue_del(&base->timerqueue, &alarm->node);
164 timerqueue_add(&base->timerqueue, &alarm->node);
165 alarm->state |= ALARMTIMER_STATE_ENQUEUED;
169 * alarmtimer_dequeue - Removes an alarm timer from an alarm_base timerqueue
170 * @base: pointer to the base where the timer is running
171 * @alarm: pointer to alarm being removed
173 * Removes alarm to a alarm_base timerqueue
175 * Must hold base->lock when calling.
177 static void alarmtimer_dequeue(struct alarm_base *base, struct alarm *alarm)
179 if (!(alarm->state & ALARMTIMER_STATE_ENQUEUED))
182 timerqueue_del(&base->timerqueue, &alarm->node);
183 alarm->state &= ~ALARMTIMER_STATE_ENQUEUED;
188 * alarmtimer_fired - Handles alarm hrtimer being fired.
189 * @timer: pointer to hrtimer being run
191 * When a alarm timer fires, this runs through the timerqueue to
192 * see which alarms expired, and runs those. If there are more alarm
193 * timers queued for the future, we set the hrtimer to fire when
194 * the next future alarm timer expires.
196 static enum hrtimer_restart alarmtimer_fired(struct hrtimer *timer)
198 struct alarm *alarm = container_of(timer, struct alarm, timer);
199 struct alarm_base *base = &alarm_bases[alarm->type];
201 scoped_guard (spinlock_irqsave, &base->lock)
202 alarmtimer_dequeue(base, alarm);
205 alarm->function(alarm, base->get_ktime());
207 trace_alarmtimer_fired(alarm, base->get_ktime());
208 return HRTIMER_NORESTART;
211 ktime_t alarm_expires_remaining(const struct alarm *alarm)
213 struct alarm_base *base = &alarm_bases[alarm->type];
214 return ktime_sub(alarm->node.expires, base->get_ktime());
216 EXPORT_SYMBOL_GPL(alarm_expires_remaining);
218 #ifdef CONFIG_RTC_CLASS
220 * alarmtimer_suspend - Suspend time callback
223 * When we are going into suspend, we look through the bases
224 * to see which is the soonest timer to expire. We then
225 * set an rtc timer to fire that far into the future, which
226 * will wake us from suspend.
228 static int alarmtimer_suspend(struct device *dev)
230 ktime_t min, now, expires;
232 struct rtc_device *rtc;
236 spin_lock_irqsave(&freezer_delta_lock, flags);
238 expires = freezer_expires;
239 type = freezer_alarmtype;
241 spin_unlock_irqrestore(&freezer_delta_lock, flags);
243 rtc = alarmtimer_get_rtcdev();
244 /* If we have no rtcdev, just return */
248 /* Find the soonest timer to expire*/
249 for (i = 0; i < ALARM_NUMTYPE; i++) {
250 struct alarm_base *base = &alarm_bases[i];
251 struct timerqueue_node *next;
254 spin_lock_irqsave(&base->lock, flags);
255 next = timerqueue_getnext(&base->timerqueue);
256 spin_unlock_irqrestore(&base->lock, flags);
259 delta = ktime_sub(next->expires, base->get_ktime());
260 if (!min || (delta < min)) {
261 expires = next->expires;
269 if (ktime_to_ns(min) < 2 * NSEC_PER_SEC) {
270 pm_wakeup_event(dev, 2 * MSEC_PER_SEC);
274 trace_alarmtimer_suspend(expires, type);
276 /* Setup an rtc timer to fire that far in the future */
277 rtc_timer_cancel(rtc, &rtctimer);
278 rtc_read_time(rtc, &tm);
279 now = rtc_tm_to_ktime(tm);
282 * If the RTC alarm timer only supports a limited time offset, set the
283 * alarm time to the maximum supported value.
284 * The system may wake up earlier (possibly much earlier) than expected
285 * when the alarmtimer runs. This is the best the kernel can do if
286 * the alarmtimer exceeds the time that the rtc device can be programmed
289 min = rtc_bound_alarmtime(rtc, min);
291 now = ktime_add(now, min);
293 /* Set alarm, if in the past reject suspend briefly to handle */
294 ret = rtc_timer_start(rtc, &rtctimer, now, 0);
296 pm_wakeup_event(dev, MSEC_PER_SEC);
300 static int alarmtimer_resume(struct device *dev)
302 struct rtc_device *rtc;
304 rtc = alarmtimer_get_rtcdev();
306 rtc_timer_cancel(rtc, &rtctimer);
311 static int alarmtimer_suspend(struct device *dev)
316 static int alarmtimer_resume(struct device *dev)
323 __alarm_init(struct alarm *alarm, enum alarmtimer_type type,
324 void (*function)(struct alarm *, ktime_t))
326 timerqueue_init(&alarm->node);
327 alarm->function = function;
329 alarm->state = ALARMTIMER_STATE_INACTIVE;
333 * alarm_init - Initialize an alarm structure
334 * @alarm: ptr to alarm to be initialized
335 * @type: the type of the alarm
336 * @function: callback that is run when the alarm fires
338 void alarm_init(struct alarm *alarm, enum alarmtimer_type type,
339 void (*function)(struct alarm *, ktime_t))
341 hrtimer_setup(&alarm->timer, alarmtimer_fired, alarm_bases[type].base_clockid,
343 __alarm_init(alarm, type, function);
345 EXPORT_SYMBOL_GPL(alarm_init);
348 * alarm_start - Sets an absolute alarm to fire
349 * @alarm: ptr to alarm to set
350 * @start: time to run the alarm
352 void alarm_start(struct alarm *alarm, ktime_t start)
354 struct alarm_base *base = &alarm_bases[alarm->type];
357 spin_lock_irqsave(&base->lock, flags);
358 alarm->node.expires = start;
359 alarmtimer_enqueue(base, alarm);
360 hrtimer_start(&alarm->timer, alarm->node.expires, HRTIMER_MODE_ABS);
361 spin_unlock_irqrestore(&base->lock, flags);
363 trace_alarmtimer_start(alarm, base->get_ktime());
365 EXPORT_SYMBOL_GPL(alarm_start);
368 * alarm_start_relative - Sets a relative alarm to fire
369 * @alarm: ptr to alarm to set
370 * @start: time relative to now to run the alarm
372 void alarm_start_relative(struct alarm *alarm, ktime_t start)
374 struct alarm_base *base = &alarm_bases[alarm->type];
376 start = ktime_add_safe(start, base->get_ktime());
377 alarm_start(alarm, start);
379 EXPORT_SYMBOL_GPL(alarm_start_relative);
381 void alarm_restart(struct alarm *alarm)
383 struct alarm_base *base = &alarm_bases[alarm->type];
386 spin_lock_irqsave(&base->lock, flags);
387 hrtimer_set_expires(&alarm->timer, alarm->node.expires);
388 hrtimer_restart(&alarm->timer);
389 alarmtimer_enqueue(base, alarm);
390 spin_unlock_irqrestore(&base->lock, flags);
392 EXPORT_SYMBOL_GPL(alarm_restart);
395 * alarm_try_to_cancel - Tries to cancel an alarm timer
396 * @alarm: ptr to alarm to be canceled
398 * Returns 1 if the timer was canceled, 0 if it was not running,
399 * and -1 if the callback was running
401 int alarm_try_to_cancel(struct alarm *alarm)
403 struct alarm_base *base = &alarm_bases[alarm->type];
407 spin_lock_irqsave(&base->lock, flags);
408 ret = hrtimer_try_to_cancel(&alarm->timer);
410 alarmtimer_dequeue(base, alarm);
411 spin_unlock_irqrestore(&base->lock, flags);
413 trace_alarmtimer_cancel(alarm, base->get_ktime());
416 EXPORT_SYMBOL_GPL(alarm_try_to_cancel);
420 * alarm_cancel - Spins trying to cancel an alarm timer until it is done
421 * @alarm: ptr to alarm to be canceled
423 * Returns 1 if the timer was canceled, 0 if it was not active.
425 int alarm_cancel(struct alarm *alarm)
428 int ret = alarm_try_to_cancel(alarm);
431 hrtimer_cancel_wait_running(&alarm->timer);
434 EXPORT_SYMBOL_GPL(alarm_cancel);
437 u64 alarm_forward(struct alarm *alarm, ktime_t now, ktime_t interval)
442 delta = ktime_sub(now, alarm->node.expires);
447 if (unlikely(delta >= interval)) {
448 s64 incr = ktime_to_ns(interval);
450 overrun = ktime_divns(delta, incr);
452 alarm->node.expires = ktime_add_ns(alarm->node.expires,
455 if (alarm->node.expires > now)
458 * This (and the ktime_add() below) is the
459 * correction for exact:
464 alarm->node.expires = ktime_add_safe(alarm->node.expires, interval);
467 EXPORT_SYMBOL_GPL(alarm_forward);
469 u64 alarm_forward_now(struct alarm *alarm, ktime_t interval)
471 struct alarm_base *base = &alarm_bases[alarm->type];
473 return alarm_forward(alarm, base->get_ktime(), interval);
475 EXPORT_SYMBOL_GPL(alarm_forward_now);
477 #ifdef CONFIG_POSIX_TIMERS
479 static void alarmtimer_freezerset(ktime_t absexp, enum alarmtimer_type type)
481 struct alarm_base *base;
487 base = &alarm_bases[ALARM_REALTIME];
488 type = ALARM_REALTIME_FREEZER;
491 base = &alarm_bases[ALARM_BOOTTIME];
492 type = ALARM_BOOTTIME_FREEZER;
495 WARN_ONCE(1, "Invalid alarm type: %d\n", type);
499 delta = ktime_sub(absexp, base->get_ktime());
501 spin_lock_irqsave(&freezer_delta_lock, flags);
502 if (!freezer_delta || (delta < freezer_delta)) {
503 freezer_delta = delta;
504 freezer_expires = absexp;
505 freezer_alarmtype = type;
507 spin_unlock_irqrestore(&freezer_delta_lock, flags);
511 * clock2alarm - helper that converts from clockid to alarmtypes
514 static enum alarmtimer_type clock2alarm(clockid_t clockid)
516 if (clockid == CLOCK_REALTIME_ALARM)
517 return ALARM_REALTIME;
518 if (clockid == CLOCK_BOOTTIME_ALARM)
519 return ALARM_BOOTTIME;
524 * alarm_handle_timer - Callback for posix timers
525 * @alarm: alarm that fired
526 * @now: time at the timer expiration
528 * Posix timer callback for expired alarm timers.
530 * Return: whether the timer is to be restarted
532 static void alarm_handle_timer(struct alarm *alarm, ktime_t now)
534 struct k_itimer *ptr = container_of(alarm, struct k_itimer, it.alarm.alarmtimer);
536 guard(spinlock_irqsave)(&ptr->it_lock);
537 posix_timer_queue_signal(ptr);
541 * alarm_timer_rearm - Posix timer callback for rearming timer
542 * @timr: Pointer to the posixtimer data struct
544 static void alarm_timer_rearm(struct k_itimer *timr)
546 struct alarm *alarm = &timr->it.alarm.alarmtimer;
548 timr->it_overrun += alarm_forward_now(alarm, timr->it_interval);
549 alarm_start(alarm, alarm->node.expires);
553 * alarm_timer_forward - Posix timer callback for forwarding timer
554 * @timr: Pointer to the posixtimer data struct
555 * @now: Current time to forward the timer against
557 static s64 alarm_timer_forward(struct k_itimer *timr, ktime_t now)
559 struct alarm *alarm = &timr->it.alarm.alarmtimer;
561 return alarm_forward(alarm, timr->it_interval, now);
565 * alarm_timer_remaining - Posix timer callback to retrieve remaining time
566 * @timr: Pointer to the posixtimer data struct
567 * @now: Current time to calculate against
569 static ktime_t alarm_timer_remaining(struct k_itimer *timr, ktime_t now)
571 struct alarm *alarm = &timr->it.alarm.alarmtimer;
573 return ktime_sub(alarm->node.expires, now);
577 * alarm_timer_try_to_cancel - Posix timer callback to cancel a timer
578 * @timr: Pointer to the posixtimer data struct
580 static int alarm_timer_try_to_cancel(struct k_itimer *timr)
582 return alarm_try_to_cancel(&timr->it.alarm.alarmtimer);
586 * alarm_timer_wait_running - Posix timer callback to wait for a timer
587 * @timr: Pointer to the posixtimer data struct
589 * Called from the core code when timer cancel detected that the callback
590 * is running. @timr is unlocked and rcu read lock is held to prevent it
593 static void alarm_timer_wait_running(struct k_itimer *timr)
595 hrtimer_cancel_wait_running(&timr->it.alarm.alarmtimer.timer);
599 * alarm_timer_arm - Posix timer callback to arm a timer
600 * @timr: Pointer to the posixtimer data struct
601 * @expires: The new expiry time
602 * @absolute: Expiry value is absolute time
603 * @sigev_none: Posix timer does not deliver signals
605 static void alarm_timer_arm(struct k_itimer *timr, ktime_t expires,
606 bool absolute, bool sigev_none)
608 struct alarm *alarm = &timr->it.alarm.alarmtimer;
609 struct alarm_base *base = &alarm_bases[alarm->type];
612 expires = ktime_add_safe(expires, base->get_ktime());
614 alarm->node.expires = expires;
616 alarm_start(&timr->it.alarm.alarmtimer, expires);
620 * alarm_clock_getres - posix getres interface
621 * @which_clock: clockid
622 * @tp: timespec to fill
624 * Returns the granularity of underlying alarm base clock
626 static int alarm_clock_getres(const clockid_t which_clock, struct timespec64 *tp)
628 if (!alarmtimer_get_rtcdev())
632 tp->tv_nsec = hrtimer_resolution;
637 * alarm_clock_get_timespec - posix clock_get_timespec interface
638 * @which_clock: clockid
639 * @tp: timespec to fill.
641 * Provides the underlying alarm base time in a tasks time namespace.
643 static int alarm_clock_get_timespec(clockid_t which_clock, struct timespec64 *tp)
645 struct alarm_base *base = &alarm_bases[clock2alarm(which_clock)];
647 if (!alarmtimer_get_rtcdev())
650 base->get_timespec(tp);
656 * alarm_clock_get_ktime - posix clock_get_ktime interface
657 * @which_clock: clockid
659 * Provides the underlying alarm base time in the root namespace.
661 static ktime_t alarm_clock_get_ktime(clockid_t which_clock)
663 struct alarm_base *base = &alarm_bases[clock2alarm(which_clock)];
665 if (!alarmtimer_get_rtcdev())
668 return base->get_ktime();
672 * alarm_timer_create - posix timer_create interface
673 * @new_timer: k_itimer pointer to manage
675 * Initializes the k_itimer structure.
677 static int alarm_timer_create(struct k_itimer *new_timer)
679 enum alarmtimer_type type;
681 if (!alarmtimer_get_rtcdev())
684 if (!capable(CAP_WAKE_ALARM))
687 type = clock2alarm(new_timer->it_clock);
688 alarm_init(&new_timer->it.alarm.alarmtimer, type, alarm_handle_timer);
693 * alarmtimer_nsleep_wakeup - Wakeup function for alarm_timer_nsleep
694 * @alarm: ptr to alarm that fired
695 * @now: time at the timer expiration
697 * Wakes up the task that set the alarmtimer
699 static void alarmtimer_nsleep_wakeup(struct alarm *alarm, ktime_t now)
701 struct task_struct *task = alarm->data;
705 wake_up_process(task);
709 * alarmtimer_do_nsleep - Internal alarmtimer nsleep implementation
710 * @alarm: ptr to alarmtimer
711 * @absexp: absolute expiration time
712 * @type: alarm type (BOOTTIME/REALTIME).
714 * Sets the alarm timer and sleeps until it is fired or interrupted.
716 static int alarmtimer_do_nsleep(struct alarm *alarm, ktime_t absexp,
717 enum alarmtimer_type type)
719 struct restart_block *restart;
720 alarm->data = (void *)current;
722 set_current_state(TASK_INTERRUPTIBLE);
723 alarm_start(alarm, absexp);
724 if (likely(alarm->data))
728 } while (alarm->data && !signal_pending(current));
730 __set_current_state(TASK_RUNNING);
732 destroy_hrtimer_on_stack(&alarm->timer);
737 if (freezing(current))
738 alarmtimer_freezerset(absexp, type);
739 restart = ¤t->restart_block;
740 if (restart->nanosleep.type != TT_NONE) {
741 struct timespec64 rmt;
744 rem = ktime_sub(absexp, alarm_bases[type].get_ktime());
748 rmt = ktime_to_timespec64(rem);
750 return nanosleep_copyout(restart, &rmt);
752 return -ERESTART_RESTARTBLOCK;
756 alarm_init_on_stack(struct alarm *alarm, enum alarmtimer_type type,
757 void (*function)(struct alarm *, ktime_t))
759 hrtimer_setup_on_stack(&alarm->timer, alarmtimer_fired, alarm_bases[type].base_clockid,
761 __alarm_init(alarm, type, function);
765 * alarm_timer_nsleep_restart - restartblock alarmtimer nsleep
766 * @restart: ptr to restart block
768 * Handles restarted clock_nanosleep calls
770 static long __sched alarm_timer_nsleep_restart(struct restart_block *restart)
772 enum alarmtimer_type type = restart->nanosleep.clockid;
773 ktime_t exp = restart->nanosleep.expires;
776 alarm_init_on_stack(&alarm, type, alarmtimer_nsleep_wakeup);
778 return alarmtimer_do_nsleep(&alarm, exp, type);
782 * alarm_timer_nsleep - alarmtimer nanosleep
783 * @which_clock: clockid
784 * @flags: determines abstime or relative
785 * @tsreq: requested sleep time (abs or rel)
787 * Handles clock_nanosleep calls against _ALARM clockids
789 static int alarm_timer_nsleep(const clockid_t which_clock, int flags,
790 const struct timespec64 *tsreq)
792 enum alarmtimer_type type = clock2alarm(which_clock);
793 struct restart_block *restart = ¤t->restart_block;
798 if (!alarmtimer_get_rtcdev())
801 if (flags & ~TIMER_ABSTIME)
804 if (!capable(CAP_WAKE_ALARM))
807 alarm_init_on_stack(&alarm, type, alarmtimer_nsleep_wakeup);
809 exp = timespec64_to_ktime(*tsreq);
810 /* Convert (if necessary) to absolute time */
811 if (flags != TIMER_ABSTIME) {
812 ktime_t now = alarm_bases[type].get_ktime();
814 exp = ktime_add_safe(now, exp);
816 exp = timens_ktime_to_host(which_clock, exp);
819 ret = alarmtimer_do_nsleep(&alarm, exp, type);
820 if (ret != -ERESTART_RESTARTBLOCK)
823 /* abs timers don't set remaining time or restart */
824 if (flags == TIMER_ABSTIME)
825 return -ERESTARTNOHAND;
827 restart->nanosleep.clockid = type;
828 restart->nanosleep.expires = exp;
829 set_restart_fn(restart, alarm_timer_nsleep_restart);
833 const struct k_clock alarm_clock = {
834 .clock_getres = alarm_clock_getres,
835 .clock_get_ktime = alarm_clock_get_ktime,
836 .clock_get_timespec = alarm_clock_get_timespec,
837 .timer_create = alarm_timer_create,
838 .timer_set = common_timer_set,
839 .timer_del = common_timer_del,
840 .timer_get = common_timer_get,
841 .timer_arm = alarm_timer_arm,
842 .timer_rearm = alarm_timer_rearm,
843 .timer_forward = alarm_timer_forward,
844 .timer_remaining = alarm_timer_remaining,
845 .timer_try_to_cancel = alarm_timer_try_to_cancel,
846 .timer_wait_running = alarm_timer_wait_running,
847 .nsleep = alarm_timer_nsleep,
849 #endif /* CONFIG_POSIX_TIMERS */
852 /* Suspend hook structures */
853 static const struct dev_pm_ops alarmtimer_pm_ops = {
854 .suspend = alarmtimer_suspend,
855 .resume = alarmtimer_resume,
858 static struct platform_driver alarmtimer_driver = {
860 .name = "alarmtimer",
861 .pm = &alarmtimer_pm_ops,
865 static void get_boottime_timespec(struct timespec64 *tp)
867 ktime_get_boottime_ts64(tp);
868 timens_add_boottime(tp);
872 * alarmtimer_init - Initialize alarm timer code
874 * This function initializes the alarm bases and registers
875 * the posix clock ids.
877 static int __init alarmtimer_init(void)
882 alarmtimer_rtc_timer_init();
884 /* Initialize alarm bases */
885 alarm_bases[ALARM_REALTIME].base_clockid = CLOCK_REALTIME;
886 alarm_bases[ALARM_REALTIME].get_ktime = &ktime_get_real;
887 alarm_bases[ALARM_REALTIME].get_timespec = ktime_get_real_ts64;
888 alarm_bases[ALARM_BOOTTIME].base_clockid = CLOCK_BOOTTIME;
889 alarm_bases[ALARM_BOOTTIME].get_ktime = &ktime_get_boottime;
890 alarm_bases[ALARM_BOOTTIME].get_timespec = get_boottime_timespec;
891 for (i = 0; i < ALARM_NUMTYPE; i++) {
892 timerqueue_init_head(&alarm_bases[i].timerqueue);
893 spin_lock_init(&alarm_bases[i].lock);
896 error = alarmtimer_rtc_interface_setup();
900 error = platform_driver_register(&alarmtimer_driver);
906 alarmtimer_rtc_interface_remove();
909 device_initcall(alarmtimer_init);