RTEMS  5.0.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
_kernel_time.h
1 /*-
2  * Copyright (c) 2016 embedded brains GmbH
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  */
26 
27 #if !defined(_SYS_TIME_H_) || !defined(_KERNEL)
28 #error "must be included via <sys/time.h> in kernel space"
29 #endif
30 
31 #include <machine/_timecounter.h>
32 
33 /* Operations on timespecs */
34 #define timespecclear(tvp) ((tvp)->tv_sec = (tvp)->tv_nsec = 0)
35 #define timespecisset(tvp) ((tvp)->tv_sec || (tvp)->tv_nsec)
36 #define timespeccmp(tvp, uvp, cmp) \
37  (((tvp)->tv_sec == (uvp)->tv_sec) ? \
38  ((tvp)->tv_nsec cmp (uvp)->tv_nsec) : \
39  ((tvp)->tv_sec cmp (uvp)->tv_sec))
40 
41 #define timespecadd(tsp, usp, vsp) \
42  do { \
43  (vsp)->tv_sec = (tsp)->tv_sec + (usp)->tv_sec; \
44  (vsp)->tv_nsec = (tsp)->tv_nsec + (usp)->tv_nsec; \
45  if ((vsp)->tv_nsec >= 1000000000L) { \
46  (vsp)->tv_sec++; \
47  (vsp)->tv_nsec -= 1000000000L; \
48  } \
49  } while (0)
50 #define timespecsub(tsp, usp, vsp) \
51  do { \
52  (vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \
53  (vsp)->tv_nsec = (tsp)->tv_nsec - (usp)->tv_nsec; \
54  if ((vsp)->tv_nsec < 0) { \
55  (vsp)->tv_sec--; \
56  (vsp)->tv_nsec += 1000000000L; \
57  } \
58  } while (0)
59 
60 /* Operations on timevals. */
61 
62 #define timevalclear(tvp) ((tvp)->tv_sec = (tvp)->tv_usec = 0)
63 #define timevalisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec)
64 #define timevalcmp(tvp, uvp, cmp) \
65  (((tvp)->tv_sec == (uvp)->tv_sec) ? \
66  ((tvp)->tv_usec cmp (uvp)->tv_usec) : \
67  ((tvp)->tv_sec cmp (uvp)->tv_sec))
68 
69 /* timevaladd and timevalsub are not inlined */
70 
71 /*
72  * Kernel to clock driver interface.
73  */
74 void inittodr(time_t base);
75 void resettodr(void);
76 
77 #define time_second _Timecounter_Time_second
78 #define time_uptime _Timecounter_Time_uptime
79 extern struct timeval boottime;
80 extern struct bintime tc_tick_bt;
81 extern sbintime_t tc_tick_sbt;
82 extern struct bintime tick_bt;
83 extern sbintime_t tick_sbt;
84 extern int tc_precexp;
85 extern int tc_timepercentage;
86 extern struct bintime bt_timethreshold;
87 extern struct bintime bt_tickthreshold;
88 extern sbintime_t sbt_timethreshold;
89 extern sbintime_t sbt_tickthreshold;
90 
91 /*
92  * Functions for looking at our clock: [get]{bin,nano,micro}[up]time()
93  *
94  * Functions without the "get" prefix returns the best timestamp
95  * we can produce in the given format.
96  *
97  * "bin" == struct bintime == seconds + 64 bit fraction of seconds.
98  * "nano" == struct timespec == seconds + nanoseconds.
99  * "micro" == struct timeval == seconds + microseconds.
100  *
101  * Functions containing "up" returns time relative to boot and
102  * should be used for calculating time intervals.
103  *
104  * Functions without "up" returns UTC time.
105  *
106  * Functions with the "get" prefix returns a less precise result
107  * much faster than the functions without "get" prefix and should
108  * be used where a precision of 1/hz seconds is acceptable or where
109  * performance is priority. (NB: "precision", _not_ "resolution" !)
110  */
111 
112 #define binuptime(_bt) _Timecounter_Binuptime(_bt)
113 #define nanouptime(_tsp) _Timecounter_Nanouptime(_tsp)
114 #define microuptime(_tvp) _Timecounter_Microuptime(_tvp)
115 
116 static __inline sbintime_t
117 sbinuptime(void)
118 {
119  struct bintime _bt;
120 
121  binuptime(&_bt);
122  return (bttosbt(_bt));
123 }
124 
125 #define bintime(_bt) _Timecounter_Bintime(_bt)
126 #define nanotime(_tsp) _Timecounter_Nanotime(_tsp)
127 #define microtime(_tvp) _Timecounter_Microtime(_tvp)
128 
129 #define getbinuptime(_bt) _Timecounter_Getbinuptime(_bt)
130 #define getnanouptime(_tsp) _Timecounter_Getnanouptime(_tsp)
131 #define getmicrouptime(_tvp) _Timecounter_Getmicrouptime(_tvp)
132 
133 static __inline sbintime_t
134 getsbinuptime(void)
135 {
136  struct bintime _bt;
137 
138  getbinuptime(&_bt);
139  return (bttosbt(_bt));
140 }
141 
142 #define getbintime(_bt) _Timecounter_Getbintime(_bt)
143 #define getnanotime(_tsp) _Timecounter_Getnanotime(_tsp)
144 #define getmicrotime(_tvp) _Timecounter_Getmicrotime(_tvp)
145 
146 #define getboottime(_tvp) _Timecounter_Getboottime(_tvp)
147 #define getboottimebin(_bt) _Timecounter_Getboottimebin(_bt)
148 
149 /* Other functions */
150 int itimerdecr(struct itimerval *itp, int usec);
151 int itimerfix(struct timeval *tv);
152 int ppsratecheck(struct timeval *, int *, int);
153 int ratecheck(struct timeval *, const struct timeval *);
154 void timevaladd(struct timeval *t1, const struct timeval *t2);
155 void timevalsub(struct timeval *t1, const struct timeval *t2);
156 int tvtohz(struct timeval *tv);
157 
158 #define TC_DEFAULTPERC 5
159 
160 #define BT2FREQ(bt) \
161  (((uint64_t)0x8000000000000000 + ((bt)->frac >> 2)) / \
162  ((bt)->frac >> 1))
163 
164 #define SBT2FREQ(sbt) ((SBT_1S + ((sbt) >> 1)) / (sbt))
165 
166 #define FREQ2BT(freq, bt) \
167 { \
168  (bt)->sec = 0; \
169  (bt)->frac = ((uint64_t)0x8000000000000000 / (freq)) << 1; \
170 }
171 
172 #define TIMESEL(sbt, sbt2) \
173  (((sbt2) >= sbt_timethreshold) ? \
174  ((*(sbt) = getsbinuptime()), 1) : ((*(sbt) = sbinuptime()), 0))