source: rtems/cpukit/include/machine/_kernel_time.h @ de6348a

5
Last change on this file since de6348a was de6348a, checked in by Sebastian Huber <sebastian.huber@…>, on 10/01/19 at 06:05:21

_kernel_time.h: Compatibility to future Newlib

  • Property mode set to 100644
File size: 6.1 KB
Line 
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#ifndef timespecclear
35#define timespecclear(tvp)      ((tvp)->tv_sec = (tvp)->tv_nsec = 0)
36#endif
37#ifndef timespecisset
38#define timespecisset(tvp)      ((tvp)->tv_sec || (tvp)->tv_nsec)
39#endif
40#ifndef timespeccmp
41#define timespeccmp(tvp, uvp, cmp)                                      \
42        (((tvp)->tv_sec == (uvp)->tv_sec) ?                             \
43            ((tvp)->tv_nsec cmp (uvp)->tv_nsec) :                       \
44            ((tvp)->tv_sec cmp (uvp)->tv_sec))
45#endif
46
47#ifndef timespecadd
48#define timespecadd(tsp, usp, vsp)                                      \
49        do {                                                            \
50                (vsp)->tv_sec = (tsp)->tv_sec + (usp)->tv_sec;          \
51                (vsp)->tv_nsec = (tsp)->tv_nsec + (usp)->tv_nsec;       \
52                if ((vsp)->tv_nsec >= 1000000000L) {                    \
53                        (vsp)->tv_sec++;                                \
54                        (vsp)->tv_nsec -= 1000000000L;                  \
55                }                                                       \
56        } while (0)
57#endif
58#ifndef timespecsub
59#define timespecsub(tsp, usp, vsp)                                      \
60        do {                                                            \
61                (vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec;          \
62                (vsp)->tv_nsec = (tsp)->tv_nsec - (usp)->tv_nsec;       \
63                if ((vsp)->tv_nsec < 0) {                               \
64                        (vsp)->tv_sec--;                                \
65                        (vsp)->tv_nsec += 1000000000L;                  \
66                }                                                       \
67        } while (0)
68#endif
69
70/* Operations on timevals. */
71
72#define timevalclear(tvp)               ((tvp)->tv_sec = (tvp)->tv_usec = 0)
73#define timevalisset(tvp)               ((tvp)->tv_sec || (tvp)->tv_usec)
74#define timevalcmp(tvp, uvp, cmp)                                       \
75        (((tvp)->tv_sec == (uvp)->tv_sec) ?                             \
76            ((tvp)->tv_usec cmp (uvp)->tv_usec) :                       \
77            ((tvp)->tv_sec cmp (uvp)->tv_sec))
78
79/* timevaladd and timevalsub are not inlined */
80
81/*
82 * Kernel to clock driver interface.
83 */
84void    inittodr(time_t base);
85void    resettodr(void);
86
87#define time_second _Timecounter_Time_second
88#define time_uptime _Timecounter_Time_uptime
89extern struct timeval boottime;
90extern struct bintime tc_tick_bt;
91extern sbintime_t tc_tick_sbt;
92extern struct bintime tick_bt;
93extern sbintime_t tick_sbt;
94extern int tc_precexp;
95extern int tc_timepercentage;
96extern struct bintime bt_timethreshold;
97extern struct bintime bt_tickthreshold;
98extern sbintime_t sbt_timethreshold;
99extern sbintime_t sbt_tickthreshold;
100
101/*
102 * Functions for looking at our clock: [get]{bin,nano,micro}[up]time()
103 *
104 * Functions without the "get" prefix returns the best timestamp
105 * we can produce in the given format.
106 *
107 * "bin"   == struct bintime  == seconds + 64 bit fraction of seconds.
108 * "nano"  == struct timespec == seconds + nanoseconds.
109 * "micro" == struct timeval  == seconds + microseconds.
110 *
111 * Functions containing "up" returns time relative to boot and
112 * should be used for calculating time intervals.
113 *
114 * Functions without "up" returns UTC time.
115 *
116 * Functions with the "get" prefix returns a less precise result
117 * much faster than the functions without "get" prefix and should
118 * be used where a precision of 1/hz seconds is acceptable or where
119 * performance is priority. (NB: "precision", _not_ "resolution" !)
120 */
121
122#define binuptime(_bt) _Timecounter_Binuptime(_bt)
123#define nanouptime(_tsp) _Timecounter_Nanouptime(_tsp)
124#define microuptime(_tvp) _Timecounter_Microuptime(_tvp)
125
126static __inline sbintime_t
127sbinuptime(void)
128{
129        struct bintime _bt;
130
131        binuptime(&_bt);
132        return (bttosbt(_bt));
133}
134
135#define bintime(_bt) _Timecounter_Bintime(_bt)
136#define nanotime(_tsp) _Timecounter_Nanotime(_tsp)
137#define microtime(_tvp) _Timecounter_Microtime(_tvp)
138
139#define getbinuptime(_bt) _Timecounter_Getbinuptime(_bt)
140#define getnanouptime(_tsp) _Timecounter_Getnanouptime(_tsp)
141#define getmicrouptime(_tvp) _Timecounter_Getmicrouptime(_tvp)
142
143static __inline sbintime_t
144getsbinuptime(void)
145{
146        struct bintime _bt;
147
148        getbinuptime(&_bt);
149        return (bttosbt(_bt));
150}
151
152#define getbintime(_bt) _Timecounter_Getbintime(_bt)
153#define getnanotime(_tsp) _Timecounter_Getnanotime(_tsp)
154#define getmicrotime(_tvp) _Timecounter_Getmicrotime(_tvp)
155
156#define getboottime(_tvp) _Timecounter_Getboottime(_tvp)
157#define getboottimebin(_bt) _Timecounter_Getboottimebin(_bt)
158
159/* Other functions */
160int     itimerdecr(struct itimerval *itp, int usec);
161int     itimerfix(struct timeval *tv);
162int     ppsratecheck(struct timeval *, int *, int);
163int     ratecheck(struct timeval *, const struct timeval *);
164void    timevaladd(struct timeval *t1, const struct timeval *t2);
165void    timevalsub(struct timeval *t1, const struct timeval *t2);
166int     tvtohz(struct timeval *tv);
167
168#define TC_DEFAULTPERC          5
169
170#define BT2FREQ(bt)                                                     \
171        (((uint64_t)0x8000000000000000 + ((bt)->frac >> 2)) /           \
172            ((bt)->frac >> 1))
173
174#define SBT2FREQ(sbt)   ((SBT_1S + ((sbt) >> 1)) / (sbt))
175
176#define FREQ2BT(freq, bt)                                               \
177{                                                                       \
178        (bt)->sec = 0;                                                  \
179        (bt)->frac = ((uint64_t)0x8000000000000000  / (freq)) << 1;     \
180}
181
182#define TIMESEL(sbt, sbt2)                                              \
183        (((sbt2) >= sbt_timethreshold) ?                                \
184            ((*(sbt) = getsbinuptime()), 1) : ((*(sbt) = sbinuptime()), 0))
Note: See TracBrowser for help on using the repository browser.