4 * Copyright(c) 2015 Intel Corporation. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * * Neither the name of Intel Corporation nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 #define NSEC_PER_SEC 1000000000L
43 * Structure to hold the parameters of a running cycle counter to assist
44 * in converting cycles to nanoseconds.
46 struct rte_timecounter {
47 /** Last cycle counter value read. */
49 /** Nanoseconds count. */
51 /** Bitmask separating nanosecond and sub-nanoseconds. */
53 /** Sub-nanoseconds count. */
55 /** Bitmask for two's complement subtraction of non-64 bit counters. */
57 /** Cycle to nanosecond divisor (power of two). */
62 * Converts cyclecounter cycles to nanoseconds.
64 static inline uint64_t
65 rte_cyclecounter_cycles_to_ns(struct rte_timecounter *tc, uint64_t cycles)
69 /* Add fractional nanoseconds. */
70 ns = cycles + tc->nsec_frac;
71 tc->nsec_frac = ns & tc->nsec_mask;
73 /* Shift to get only nanoseconds. */
74 return ns >> tc->cc_shift;
78 * Update the internal nanosecond count in the structure.
80 static inline uint64_t
81 rte_timecounter_update(struct rte_timecounter *tc, uint64_t cycle_now)
83 uint64_t cycle_delta, ns_offset;
85 /* Calculate the delta since the last call. */
86 if (tc->cycle_last <= cycle_now)
87 cycle_delta = (cycle_now - tc->cycle_last) & tc->cc_mask;
89 /* Handle cycle counts that have wrapped around . */
90 cycle_delta = (~(tc->cycle_last - cycle_now) & tc->cc_mask) + 1;
92 /* Convert to nanoseconds. */
93 ns_offset = rte_cyclecounter_cycles_to_ns(tc, cycle_delta);
95 /* Store current cycle counter for next call. */
96 tc->cycle_last = cycle_now;
98 /* Update the nanosecond count. */
99 tc->nsec += ns_offset;
105 * Convert from timespec structure into nanosecond units.
107 static inline uint64_t
108 rte_timespec_to_ns(const struct timespec *ts)
110 return ((uint64_t) ts->tv_sec * NSEC_PER_SEC) + ts->tv_nsec;
114 * Convert from nanosecond units into timespec structure.
116 static inline struct timespec
117 rte_ns_to_timespec(uint64_t nsec)
119 struct timespec ts = {0, 0};
124 ts.tv_sec = nsec / NSEC_PER_SEC;
125 ts.tv_nsec = nsec % NSEC_PER_SEC;
130 #endif /* _RTE_TIME_H_ */