]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/x86/include/asm/tsc.h
x86/tsc: Try to adjust TSC if sync test fails
[mirror_ubuntu-artful-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 24#ifndef CONFIG_X86_TSC
59e21e3d 25 if (!boot_cpu_has(X86_FEATURE_TSC))
2272b0e0
AS
26 return 0;
27#endif
2272b0e0 28
4ea1636b 29 return rdtsc();
6d63de8d 30}
4e87173e 31
f9677e0f
CH
32extern struct system_counterval_t convert_art_to_tsc(cycle_t art);
33
2272b0e0 34extern void tsc_init(void);
5a90cf20 35extern void mark_tsc_unstable(char *reason);
2272b0e0 36extern int unsynchronized_tsc(void);
2d826404 37extern int check_tsc_unstable(void);
aa297292 38extern unsigned long native_calibrate_cpu(void);
2d826404 39extern unsigned long native_calibrate_tsc(void);
a94cab23 40extern unsigned long long native_sched_clock_from_tsc(u64 tsc);
2272b0e0 41
28a00184
SS
42extern int tsc_clocksource_reliable;
43
2272b0e0
AS
44/*
45 * Boot-time check whether the TSCs are synchronized across
46 * all CPUs/cores:
47 */
48extern void check_tsc_sync_source(int cpu);
49extern void check_tsc_sync_target(void);
50
8b223bc7 51#ifdef CONFIG_X86_TSC
a36f5136 52extern bool tsc_store_and_check_tsc_adjust(void);
1d0095fe 53extern void tsc_verify_tsc_adjust(void);
8b223bc7 54#else
a36f5136 55static inline bool tsc_store_and_check_tsc_adjust(void) { }
1d0095fe 56static inline void tsc_verify_tsc_adjust(void) { }
8b223bc7
TG
57#endif
58
80ca9c98 59extern int notsc_setup(char *);
b74f05d6
MT
60extern void tsc_save_sched_clock_state(void);
61extern void tsc_restore_sched_clock_state(void);
d371698e 62
02c0cd2d 63unsigned long cpu_khz_from_msr(void);
7da7c156 64
1965aae3 65#endif /* _ASM_X86_TSC_H */