blob: f971f45d6d78b63479fa7cf48e9fb4b9efd11833 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/include/asm-x86_64/timex.h
3 *
4 * x86-64 architecture timex specifications
5 */
6#ifndef _ASMx8664_TIMEX_H
7#define _ASMx8664_TIMEX_H
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <asm/8253pit.h>
10#include <asm/msr.h>
11#include <asm/vsyscall.h>
12#include <asm/hpet.h>
13
14#define CLOCK_TICK_RATE PIT_TICK_RATE /* Underlying HZ */
15
16typedef unsigned long long cycles_t;
17
18static inline cycles_t get_cycles (void)
19{
20 unsigned long long ret;
21
22 rdtscll(ret);
23 return ret;
24}
25
26extern unsigned int cpu_khz;
27
Venkatesh Pallipadi8a9e1b02005-06-23 00:08:13 -070028extern int read_current_timer(unsigned long *timer_value);
29#define ARCH_HAS_READ_CURRENT_TIMER 1
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031extern struct vxtime_data vxtime;
32
33#endif