]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/x86/include/asm/tsc.h
x86/asm/tsc: Remove rdtscl()
[mirror_ubuntu-bionic-kernel.git] / arch / x86 / include / asm / tsc.h
CommitLineData
2272b0e0 1/*
2f0798a3 2 * x86 TSC related functions
2272b0e0 3 */
1965aae3
PA
4#ifndef _ASM_X86_TSC_H
5#define _ASM_X86_TSC_H
2272b0e0
AS
6
7#include <asm/processor.h>
8
2f0798a3
TG
9#define NS_SCALE 10 /* 2^10, carefully chosen */
10#define US_SCALE 32 /* 2^32, arbitralrily chosen */
11
2272b0e0
AS
12/*
13 * Standard way to access the cycle counter.
14 */
15typedef unsigned long long cycles_t;
16
17extern unsigned int cpu_khz;
18extern unsigned int tsc_khz;
73018a66
GOC
19
20extern void disable_TSC(void);
2272b0e0
AS
21
22static inline cycles_t get_cycles(void)
23{
2272b0e0
AS
24#ifndef CONFIG_X86_TSC
25 if (!cpu_has_tsc)
26 return 0;
27#endif
75f2ce03 28
87be28aa 29 return native_read_tsc();
2272b0e0
AS
30}
31
2272b0e0 32extern void tsc_init(void);
5a90cf20 33extern void mark_tsc_unstable(char *reason);
2272b0e0 34extern int unsynchronized_tsc(void);
2d826404 35extern int check_tsc_unstable(void);
c73deb6a 36extern int check_tsc_disabled(void);
2d826404 37extern unsigned long native_calibrate_tsc(void);
2272b0e0 38
28a00184
SS
39extern int tsc_clocksource_reliable;
40
2272b0e0
AS
41/*
42 * Boot-time check whether the TSCs are synchronized across
43 * all CPUs/cores:
44 */
45extern void check_tsc_sync_source(int cpu);
46extern void check_tsc_sync_target(void);
47
80ca9c98 48extern int notsc_setup(char *);
b74f05d6
MT
49extern void tsc_save_sched_clock_state(void);
50extern void tsc_restore_sched_clock_state(void);
d371698e 51
7da7c156 52/* MSR based TSC calibration for Intel Atom SoC platforms */
5f0e0309 53unsigned long try_msr_calibrate_tsc(void);
7da7c156 54
1965aae3 55#endif /* _ASM_X86_TSC_H */