1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2015 Anton Ivanov (aivanov@{brocade.com,kot-begemot.co.uk})
4 * Copyright (C) 2015 Thomas Meyer (thomas@m3y3r.de)
5 * Copyright (C) 2012-2014 Cisco Systems
6 * Copyright (C) 2000 - 2007 Jeff Dike (jdike{addtoit,linux.intel}.com)
15 #include <kern_util.h>
19 static timer_t event_high_res_timer = 0;
21 static inline long long timeval_to_ns(const struct timeval *tv)
23 return ((long long) tv->tv_sec * UM_NSEC_PER_SEC) +
24 tv->tv_usec * UM_NSEC_PER_USEC;
27 static inline long long timespec_to_ns(const struct timespec *ts)
29 return ((long long) ts->tv_sec * UM_NSEC_PER_SEC) + ts->tv_nsec;
32 long long os_persistent_clock_emulation(void)
34 struct timespec realtime_tp;
36 clock_gettime(CLOCK_REALTIME, &realtime_tp);
37 return timespec_to_ns(&realtime_tp);
41 * os_timer_create() - create an new posix (interval) timer
43 int os_timer_create(void)
45 timer_t *t = &event_high_res_timer;
47 if (timer_create(CLOCK_MONOTONIC, NULL, t) == -1)
53 int os_timer_set_interval(unsigned long long nsecs)
55 struct itimerspec its;
57 its.it_value.tv_sec = nsecs / UM_NSEC_PER_SEC;
58 its.it_value.tv_nsec = nsecs % UM_NSEC_PER_SEC;
60 its.it_interval.tv_sec = nsecs / UM_NSEC_PER_SEC;
61 its.it_interval.tv_nsec = nsecs % UM_NSEC_PER_SEC;
63 if (timer_settime(event_high_res_timer, 0, &its, NULL) == -1)
69 int os_timer_one_shot(unsigned long long nsecs)
71 struct itimerspec its = {
72 .it_value.tv_sec = nsecs / UM_NSEC_PER_SEC,
73 .it_value.tv_nsec = nsecs % UM_NSEC_PER_SEC,
75 .it_interval.tv_sec = 0,
76 .it_interval.tv_nsec = 0, // we cheat here
79 timer_settime(event_high_res_timer, 0, &its, NULL);
84 * os_timer_disable() - disable the posix (interval) timer
86 void os_timer_disable(void)
88 struct itimerspec its;
90 memset(&its, 0, sizeof(struct itimerspec));
91 timer_settime(event_high_res_timer, 0, &its, NULL);
94 long long os_nsecs(void)
98 clock_gettime(CLOCK_MONOTONIC,&ts);
99 return timespec_to_ns(&ts);
103 * os_idle_sleep() - sleep until interrupted
105 void os_idle_sleep(void)
107 struct itimerspec its;
110 /* block SIGALRM while we analyze the timer state */
112 sigaddset(&set, SIGALRM);
113 sigprocmask(SIG_BLOCK, &set, &old);
115 /* check the timer, and if it'll fire then wait for it */
116 timer_gettime(event_high_res_timer, &its);
117 if (its.it_value.tv_sec || its.it_value.tv_nsec)
119 /* either way, restore the signal mask */
120 sigprocmask(SIG_UNBLOCK, &set, NULL);