2 * Copyright (C) 2015 Anton Ivanov (aivanov@{brocade.com,kot-begemot.co.uk})
4 * Copyright (C) 2012-2014 Cisco Systems
5 * Copyright (C) 2000 - 2007 Jeff Dike (jdike{addtoit,linux.intel}.com)
6 * Licensed under the GPL
14 #include <kern_util.h>
17 #include <timer-internal.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) +
33 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* timer) {
48 t = &event_high_res_timer;
60 int os_timer_set_interval(void* timer, void* i)
62 struct itimerspec its;
63 unsigned long long nsec;
65 struct itimerspec* its_in = i;
68 t = &event_high_res_timer;
71 nsec = UM_NSEC_PER_SEC / UM_HZ;
74 its.it_value.tv_sec = its_in->it_value.tv_sec;
75 its.it_value.tv_nsec = its_in->it_value.tv_nsec;
77 its.it_value.tv_sec = 0;
78 its.it_value.tv_nsec = nsec;
81 its.it_interval.tv_sec = 0;
82 its.it_interval.tv_nsec = nsec;
84 if(timer_settime(*t, 0, &its, NULL) == -1) {
92 * os_timer_remain() - returns the remaining nano seconds of the given interval
94 * Because this is the remaining time of an interval timer, which correspondends
95 * to HZ, this value can never be bigger than one second. Just
96 * the nanosecond part of the timer is returned.
97 * The returned time is relative to the start time of the interval timer.
98 * Return an negative value in an error case.
100 long os_timer_remain(void* timer)
102 struct itimerspec its;
106 t = &event_high_res_timer;
109 if(timer_gettime(t, &its) == -1) {
113 return its.it_value.tv_nsec;
116 int os_timer_one_shot(int ticks)
118 struct itimerspec its;
119 unsigned long long nsec;
123 sec = nsec / UM_NSEC_PER_SEC;
124 nsec = nsec % UM_NSEC_PER_SEC;
126 its.it_value.tv_sec = nsec / UM_NSEC_PER_SEC;
127 its.it_value.tv_nsec = nsec;
129 its.it_interval.tv_sec = 0;
130 its.it_interval.tv_nsec = 0; // we cheat here
132 timer_settime(event_high_res_timer, 0, &its, NULL);
137 * os_timer_disable() - disable the posix (interval) timer
138 * Returns the remaining interval timer time in nanoseconds
140 long long os_timer_disable(void)
142 struct itimerspec its;
144 memset(&its, 0, sizeof(struct itimerspec));
145 timer_settime(event_high_res_timer, 0, &its, &its);
147 return its.it_value.tv_sec * UM_NSEC_PER_SEC + its.it_value.tv_nsec;
150 long long os_vnsecs(void)
154 clock_gettime(CLOCK_PROCESS_CPUTIME_ID,&ts);
155 return timespec_to_ns(&ts);
158 long long os_nsecs(void)
162 clock_gettime(CLOCK_MONOTONIC,&ts);
163 return timespec_to_ns(&ts);
167 * os_idle_sleep() - sleep for a given time of nsecs
168 * @nsecs: nanoseconds to sleep
170 void os_idle_sleep(unsigned long long nsecs)
178 ts = ((struct timespec) {
179 .tv_sec = nsecs / UM_NSEC_PER_SEC,
180 .tv_nsec = nsecs % UM_NSEC_PER_SEC
184 * Relay the signal if clock_nanosleep is interrupted.
186 if (clock_nanosleep(CLOCK_MONOTONIC, 0, &ts, NULL)) {