2005-04-17 06:20:36 +08:00
|
|
|
#ifndef _ASMi386_TIMER_H
|
|
|
|
#define _ASMi386_TIMER_H
|
|
|
|
#include <linux/init.h>
|
2005-09-04 06:57:07 +08:00
|
|
|
#include <linux/pm.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#define TICK_SIZE (tick_nsec / 1000)
|
|
|
|
void setup_pit_timer(void);
|
|
|
|
/* Modifiers for buggy PIT handling */
|
|
|
|
extern int pit_latch_buggy;
|
|
|
|
extern int timer_ack;
|
2007-02-13 20:26:21 +08:00
|
|
|
extern int no_timer_check;
|
2007-02-13 20:26:21 +08:00
|
|
|
extern unsigned long long (*custom_sched_clock)(void);
|
|
|
|
extern int no_sync_cmos_clock;
|
2005-06-01 10:03:46 +08:00
|
|
|
extern int recalibrate_cpu_khz(void);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#endif
|