locking/seqlock, headers: Untangle the spaghetti monster
[linux-2.6-microblaze.git] / arch / x86 / include / asm / tsc.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * x86 TSC related functions
4  */
5 #ifndef _ASM_X86_TSC_H
6 #define _ASM_X86_TSC_H
7
8 #include <asm/processor.h>
9 #include <asm/cpufeature.h>
10
11 #define NS_SCALE        10 /* 2^10, carefully chosen */
12 #define US_SCALE        32 /* 2^32, arbitralrily chosen */
13
14 /*
15  * Standard way to access the cycle counter.
16  */
17 typedef unsigned long long cycles_t;
18
19 extern unsigned int cpu_khz;
20 extern unsigned int tsc_khz;
21
22 extern void disable_TSC(void);
23
24 static inline cycles_t get_cycles(void)
25 {
26 #ifndef CONFIG_X86_TSC
27         if (!boot_cpu_has(X86_FEATURE_TSC))
28                 return 0;
29 #endif
30
31         return rdtsc();
32 }
33
34 extern struct system_counterval_t convert_art_to_tsc(u64 art);
35 extern struct system_counterval_t convert_art_ns_to_tsc(u64 art_ns);
36
37 extern void tsc_early_init(void);
38 extern void tsc_init(void);
39 extern unsigned long calibrate_delay_is_known(void);
40 extern void mark_tsc_unstable(char *reason);
41 extern int unsynchronized_tsc(void);
42 extern int check_tsc_unstable(void);
43 extern void mark_tsc_async_resets(char *reason);
44 extern unsigned long native_calibrate_cpu_early(void);
45 extern unsigned long native_calibrate_tsc(void);
46 extern unsigned long long native_sched_clock_from_tsc(u64 tsc);
47
48 extern int tsc_clocksource_reliable;
49 #ifdef CONFIG_X86_TSC
50 extern bool tsc_async_resets;
51 #else
52 # define tsc_async_resets       false
53 #endif
54
55 /*
56  * Boot-time check whether the TSCs are synchronized across
57  * all CPUs/cores:
58  */
59 #ifdef CONFIG_X86_TSC
60 extern bool tsc_store_and_check_tsc_adjust(bool bootcpu);
61 extern void tsc_verify_tsc_adjust(bool resume);
62 extern void check_tsc_sync_source(int cpu);
63 extern void check_tsc_sync_target(void);
64 #else
65 static inline bool tsc_store_and_check_tsc_adjust(bool bootcpu) { return false; }
66 static inline void tsc_verify_tsc_adjust(bool resume) { }
67 static inline void check_tsc_sync_source(int cpu) { }
68 static inline void check_tsc_sync_target(void) { }
69 #endif
70
71 extern int notsc_setup(char *);
72 extern void tsc_save_sched_clock_state(void);
73 extern void tsc_restore_sched_clock_state(void);
74
75 unsigned long cpu_khz_from_msr(void);
76
77 #endif /* _ASM_X86_TSC_H */