1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2015 Anton Ivanov (aivanov@{brocade.com,kot-begemot.co.uk})
5 * Copyright (C) 2012-2014 Cisco Systems
6 * Copyright (C) 2000 - 2007 Jeff Dike (jdike{addtoit,linux.intel}.com)
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) + 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 for a given time of nsecs
104 * @nsecs: nanoseconds to sleep
106 void os_idle_sleep(unsigned long long nsecs)
108 struct timespec ts = {
109 .tv_sec = nsecs / UM_NSEC_PER_SEC,
110 .tv_nsec = nsecs % UM_NSEC_PER_SEC
114 * Relay the signal if clock_nanosleep is interrupted.
116 if (clock_nanosleep(CLOCK_MONOTONIC, 0, &ts, NULL))