1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2014 Intel Corporation
13 #include <rte_common.h>
14 #include <rte_compat.h>
16 #include <rte_cycles.h>
17 #include <rte_pause.h>
19 #include "eal_private.h"
21 /* The frequency of the RDTSC timer resolution */
22 static uint64_t eal_tsc_resolution_hz;
24 /* Pointer to user delay function */
25 void (*rte_delay_us)(unsigned int) = NULL;
28 rte_delay_us_block(unsigned int us)
30 const uint64_t start = rte_get_timer_cycles();
31 const uint64_t ticks = (uint64_t)us * rte_get_timer_hz() / 1E6;
32 while ((rte_get_timer_cycles() - start) < ticks)
36 void __rte_experimental
37 rte_delay_us_sleep(unsigned int us)
39 struct timespec wait[2];
44 wait[0].tv_sec = us / US_PER_S;
45 us -= wait[0].tv_sec * US_PER_S;
47 wait[0].tv_nsec = 1000 * us;
49 while (nanosleep(&wait[ind], &wait[1 - ind]) && errno == EINTR) {
51 * Sleep was interrupted. Flip the index, so the 'remainder'
52 * will become the 'request' for a next call.
61 return eal_tsc_resolution_hz;
65 estimate_tsc_freq(void)
67 #define CYC_PER_10MHZ 1E7
68 RTE_LOG(WARNING, EAL, "WARNING: TSC frequency estimated roughly"
69 " - clock timings may be less accurate.\n");
70 /* assume that the sleep(1) will sleep for 1 second */
71 uint64_t start = rte_rdtsc();
73 /* Round up to 10Mhz. 1E7 ~ 10Mhz */
74 return RTE_ALIGN_MUL_NEAR(rte_rdtsc() - start, CYC_PER_10MHZ);
82 freq = get_tsc_freq_arch();
84 freq = get_tsc_freq();
86 freq = estimate_tsc_freq();
88 RTE_LOG(DEBUG, EAL, "TSC frequency is ~%" PRIu64 " KHz\n", freq / 1000);
89 eal_tsc_resolution_hz = freq;
92 void rte_delay_us_callback_register(void (*userfunc)(unsigned int))
94 rte_delay_us = userfunc;
97 RTE_INIT(rte_timer_init)
99 /* set rte_delay_us_block as a delay function */
100 rte_delay_us_callback_register(rte_delay_us_block);