]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/x86/include/asm/tsc.h
Merge tag 'befs-v4.13-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/luisbg...
[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
a5a1d1c2 32extern struct system_counterval_t convert_art_to_tsc(u64 art);
f9677e0f 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 */
8b223bc7 48#ifdef CONFIG_X86_TSC
5bae1562 49extern bool tsc_store_and_check_tsc_adjust(bool bootcpu);
6a369583 50extern void tsc_verify_tsc_adjust(bool resume);
b8365543
TG
51extern void check_tsc_sync_source(int cpu);
52extern void check_tsc_sync_target(void);
8b223bc7 53#else
5bae1562 54static inline bool tsc_store_and_check_tsc_adjust(bool bootcpu) { return false; }
6a369583 55static inline void tsc_verify_tsc_adjust(bool resume) { }
b8365543
TG
56static inline void check_tsc_sync_source(int cpu) { }
57static inline void check_tsc_sync_target(void) { }
8b223bc7
TG
58#endif
59
80ca9c98 60extern int notsc_setup(char *);
b74f05d6
MT
61extern void tsc_save_sched_clock_state(void);
62extern void tsc_restore_sched_clock_state(void);
d371698e 63
02c0cd2d 64unsigned long cpu_khz_from_msr(void);
7da7c156 65
1965aae3 66#endif /* _ASM_X86_TSC_H */