aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-dpdk/odp_time.c
blob: 2fc25eb960b81cacb929873061ed285b23021ee7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/* Copyright (c) 2013-2018, Linaro Limited
 * Copyright (c) 2021-2023, Nokia
 * All rights reserved.
 *
 * SPDX-License-Identifier:     BSD-3-Clause
 */

#include <odp/api/plat/time_inlines.h>

#include <odp_debug_internal.h>
#include <odp_init_internal.h>

#include <rte_config.h>
#include <rte_cycles.h>

#include <string.h>

#include <odp/visibility_begin.h>

_odp_time_global_t _odp_time_glob;

#include <odp/visibility_end.h>

int _odp_time_init_global(void)
{
	memset(&_odp_time_glob, 0, sizeof(_odp_time_global_t));

#ifdef RTE_LIBEAL_USE_HPET
	if (rte_eal_hpet_init(1) != 0)
		_ODP_WARN("HPET init failed. Using TSC time.\n");
#endif

	_odp_time_glob.freq_hz = rte_get_timer_hz();
	_odp_time_glob.start_cycles = rte_get_timer_cycles();
	if (_odp_time_glob.start_cycles == 0) {
		_ODP_ERR("Initializing start cycles failed.\n");
		return -1;
	}

	return 0;
}

int _odp_time_term_global(void)
{
	return 0;
}