Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm...
[deliverable/linux.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
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);
c73deb6a 38extern int check_tsc_disabled(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
80ca9c98 51extern int notsc_setup(char *);
b74f05d6
MT
52extern void tsc_save_sched_clock_state(void);
53extern void tsc_restore_sched_clock_state(void);
d371698e 54
7da7c156 55/* MSR based TSC calibration for Intel Atom SoC platforms */
5f0e0309 56unsigned long try_msr_calibrate_tsc(void);
7da7c156 57
1965aae3 58#endif /* _ASM_X86_TSC_H */
This page took 0.638569 seconds and 5 git commands to generate.