2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* linux/include/asm-x86_64/timex.h
|
|
|
|
*
|
|
|
|
* x86-64 architecture timex specifications
|
|
|
|
*/
|
|
|
|
#ifndef _ASMx8664_TIMEX_H
|
|
|
|
#define _ASMx8664_TIMEX_H
|
|
|
|
|
|
|
|
#include <asm/8253pit.h>
|
|
|
|
#include <asm/msr.h>
|
|
|
|
#include <asm/vsyscall.h>
|
|
|
|
#include <asm/hpet.h>
|
2006-01-11 21:45:24 +00:00
|
|
|
#include <asm/system.h>
|
|
|
|
#include <asm/processor.h>
|
2007-02-16 09:27:34 +00:00
|
|
|
#include <asm/tsc.h>
|
2006-01-11 21:45:24 +00:00
|
|
|
#include <linux/compiler.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#define CLOCK_TICK_RATE PIT_TICK_RATE /* Underlying HZ */
|
|
|
|
|
2005-06-23 07:08:13 +00:00
|
|
|
extern int read_current_timer(unsigned long *timer_value);
|
|
|
|
#define ARCH_HAS_READ_CURRENT_TIMER 1
|
|
|
|
|
2007-02-16 09:28:19 +00:00
|
|
|
#define USEC_PER_TICK (USEC_PER_SEC / HZ)
|
|
|
|
#define NSEC_PER_TICK (NSEC_PER_SEC / HZ)
|
|
|
|
#define FSEC_PER_TICK (FSEC_PER_SEC / HZ)
|
|
|
|
|
|
|
|
#define NS_SCALE 10 /* 2^10, carefully chosen */
|
|
|
|
#define US_SCALE 32 /* 2^32, arbitralrily chosen */
|
|
|
|
|
2007-02-16 09:28:20 +00:00
|
|
|
extern void mark_tsc_unstable(void);
|
2007-02-16 09:28:19 +00:00
|
|
|
extern void set_cyc2ns_scale(unsigned long khz);
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif
|