USB: support more Huawei data card product IDs
[linux-2.6/s3c2410-cpufreq.git] / include / asm-x86 / tsc.h
blob7d3e27f7d484d8ce848951b4f0b48a4d285242c0
1 /*
2 * x86 TSC related functions
3 */
4 #ifndef _ASM_X86_TSC_H
5 #define _ASM_X86_TSC_H
7 #include <asm/processor.h>
9 #define NS_SCALE 10 /* 2^10, carefully chosen */
10 #define US_SCALE 32 /* 2^32, arbitralrily chosen */
13 * Standard way to access the cycle counter.
15 typedef unsigned long long cycles_t;
17 extern unsigned int cpu_khz;
18 extern unsigned int tsc_khz;
20 extern void disable_TSC(void);
22 static inline cycles_t get_cycles(void)
24 unsigned long long ret = 0;
26 #ifndef CONFIG_X86_TSC
27 if (!cpu_has_tsc)
28 return 0;
29 #endif
30 rdtscll(ret);
32 return ret;
35 static inline cycles_t vget_cycles(void)
38 * We only do VDSOs on TSC capable CPUs, so this shouldnt
39 * access boot_cpu_data (which is not VDSO-safe):
41 #ifndef CONFIG_X86_TSC
42 if (!cpu_has_tsc)
43 return 0;
44 #endif
45 return (cycles_t) __native_read_tsc();
48 extern void tsc_init(void);
49 extern void mark_tsc_unstable(char *reason);
50 extern int unsynchronized_tsc(void);
51 extern void init_tsc_clocksource(void);
52 int check_tsc_unstable(void);
55 * Boot-time check whether the TSCs are synchronized across
56 * all CPUs/cores:
58 extern void check_tsc_sync_source(int cpu);
59 extern void check_tsc_sync_target(void);
61 extern void tsc_calibrate(void);
62 extern int notsc_setup(char *);
64 #endif