2007-03-06 17:42:05 +08:00
|
|
|
/*
|
2007-10-13 05:04:23 +08:00
|
|
|
* x86 TSC related functions
|
2007-03-06 17:42:05 +08:00
|
|
|
*/
|
2008-10-23 13:26:29 +08:00
|
|
|
#ifndef _ASM_X86_TSC_H
|
|
|
|
#define _ASM_X86_TSC_H
|
2007-03-06 17:42:05 +08:00
|
|
|
|
|
|
|
#include <asm/processor.h>
|
|
|
|
|
2007-10-13 05:04:23 +08:00
|
|
|
#define NS_SCALE 10 /* 2^10, carefully chosen */
|
|
|
|
#define US_SCALE 32 /* 2^32, arbitralrily chosen */
|
|
|
|
|
2007-03-06 17:42:05 +08:00
|
|
|
/*
|
|
|
|
* Standard way to access the cycle counter.
|
|
|
|
*/
|
|
|
|
typedef unsigned long long cycles_t;
|
|
|
|
|
|
|
|
extern unsigned int cpu_khz;
|
|
|
|
extern unsigned int tsc_khz;
|
2008-01-30 20:31:26 +08:00
|
|
|
|
|
|
|
extern void disable_TSC(void);
|
2007-03-06 17:42:05 +08:00
|
|
|
|
|
|
|
static inline cycles_t get_cycles(void)
|
|
|
|
{
|
|
|
|
unsigned long long ret = 0;
|
|
|
|
|
|
|
|
#ifndef CONFIG_X86_TSC
|
|
|
|
if (!cpu_has_tsc)
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
rdtscll(ret);
|
2008-01-30 20:33:24 +08:00
|
|
|
|
2007-03-06 17:42:05 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-04-27 07:39:36 +08:00
|
|
|
static __always_inline cycles_t vget_cycles(void)
|
2007-03-06 17:42:05 +08:00
|
|
|
{
|
2007-05-03 01:27:21 +08:00
|
|
|
/*
|
2011-03-18 03:24:16 +08:00
|
|
|
* We only do VDSOs on TSC capable CPUs, so this shouldn't
|
2008-01-30 20:32:39 +08:00
|
|
|
* access boot_cpu_data (which is not VDSO-safe):
|
2007-05-03 01:27:21 +08:00
|
|
|
*/
|
2008-01-30 20:32:39 +08:00
|
|
|
#ifndef CONFIG_X86_TSC
|
|
|
|
if (!cpu_has_tsc)
|
|
|
|
return 0;
|
2008-01-30 20:31:03 +08:00
|
|
|
#endif
|
2008-11-09 03:27:00 +08:00
|
|
|
return (cycles_t)__native_read_tsc();
|
2008-01-30 20:32:39 +08:00
|
|
|
}
|
2008-01-30 20:31:03 +08:00
|
|
|
|
2007-03-06 17:42:05 +08:00
|
|
|
extern void tsc_init(void);
|
2007-05-03 01:27:08 +08:00
|
|
|
extern void mark_tsc_unstable(char *reason);
|
2007-03-06 17:42:05 +08:00
|
|
|
extern int unsynchronized_tsc(void);
|
2009-08-20 23:06:25 +08:00
|
|
|
extern int check_tsc_unstable(void);
|
2013-06-28 21:22:18 +08:00
|
|
|
extern int check_tsc_disabled(void);
|
2009-08-20 23:06:25 +08:00
|
|
|
extern unsigned long native_calibrate_tsc(void);
|
2007-03-06 17:42:05 +08:00
|
|
|
|
2011-11-05 06:42:17 +08:00
|
|
|
extern int tsc_clocksource_reliable;
|
|
|
|
|
2007-03-06 17:42:05 +08:00
|
|
|
/*
|
|
|
|
* Boot-time check whether the TSCs are synchronized across
|
|
|
|
* all CPUs/cores:
|
|
|
|
*/
|
|
|
|
extern void check_tsc_sync_source(int cpu);
|
|
|
|
extern void check_tsc_sync_target(void);
|
|
|
|
|
2008-01-30 20:30:18 +08:00
|
|
|
extern int notsc_setup(char *);
|
2012-02-13 21:07:27 +08:00
|
|
|
extern void tsc_save_sched_clock_state(void);
|
|
|
|
extern void tsc_restore_sched_clock_state(void);
|
2007-10-13 05:04:06 +08:00
|
|
|
|
2013-10-22 00:16:33 +08:00
|
|
|
/* MSR based TSC calibration for Intel Atom SoC platforms */
|
2014-02-19 19:52:29 +08:00
|
|
|
unsigned long try_msr_calibrate_tsc(void);
|
2013-10-22 00:16:33 +08:00
|
|
|
|
2008-10-23 13:26:29 +08:00
|
|
|
#endif /* _ASM_X86_TSC_H */
|