[IRDA]: kill drivers/net/irda/sir_core.c
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / asm-x86_64 / timex.h
blobf971f45d6d78b63479fa7cf48e9fb4b9efd11833
1 /*
2 * linux/include/asm-x86_64/timex.h
4 * x86-64 architecture timex specifications
5 */
6 #ifndef _ASMx8664_TIMEX_H
7 #define _ASMx8664_TIMEX_H
9 #include <asm/8253pit.h>
10 #include <asm/msr.h>
11 #include <asm/vsyscall.h>
12 #include <asm/hpet.h>
14 #define CLOCK_TICK_RATE PIT_TICK_RATE /* Underlying HZ */
16 typedef unsigned long long cycles_t;
18 static inline cycles_t get_cycles (void)
20 unsigned long long ret;
22 rdtscll(ret);
23 return ret;
26 extern unsigned int cpu_khz;
28 extern int read_current_timer(unsigned long *timer_value);
29 #define ARCH_HAS_READ_CURRENT_TIMER 1
31 extern struct vxtime_data vxtime;
33 #endif