timer.h 410 B

12345678910111213141516
  1. #ifndef _ASMi386_TIMER_H
  2. #define _ASMi386_TIMER_H
  3. #include <linux/init.h>
  4. #include <linux/pm.h>
  5. #define TICK_SIZE (tick_nsec / 1000)
  6. void setup_pit_timer(void);
  7. /* Modifiers for buggy PIT handling */
  8. extern int pit_latch_buggy;
  9. extern int timer_ack;
  10. extern int no_timer_check;
  11. extern unsigned long long (*custom_sched_clock)(void);
  12. extern int no_sync_cmos_clock;
  13. extern int recalibrate_cpu_khz(void);
  14. #endif