blob: 5585f9273c78b5e9633dc7f407c10ec18ae5251d (
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
|
/*
* SPDX-License-Identifier: BSD-3-Clause
* Copyright (C) IBM Corporation 2014.
*/
#ifndef _RTE_CYCLES_PPC_64_H_
#define _RTE_CYCLES_PPC_64_H_
#ifdef __cplusplus
extern "C" {
#endif
#include <sys/platform/ppc.h>
#include "generic/rte_cycles.h"
#include <rte_byteorder.h>
#include <rte_common.h>
/**
* Read the time base register.
*
* @return
* The time base for this lcore.
*/
static inline uint64_t
rte_rdtsc(void)
{
return __ppc_get_timebase();
}
static inline uint64_t
rte_rdtsc_precise(void)
{
rte_mb();
return rte_rdtsc();
}
static inline uint64_t
rte_get_tsc_cycles(void) { return rte_rdtsc(); }
#ifdef __cplusplus
}
#endif
#endif /* _RTE_CYCLES_PPC_64_H_ */
|