timer.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. #ifndef _ASMi386_TIMER_H
  2. #define _ASMi386_TIMER_H
  3. #include <linux/init.h>
  4. /**
  5. * struct timer_ops - used to define a timer source
  6. *
  7. * @name: name of the timer.
  8. * @init: Probes and initializes the timer. Takes clock= override
  9. * string as an argument. Returns 0 on success, anything else
  10. * on failure.
  11. * @mark_offset: called by the timer interrupt.
  12. * @get_offset: called by gettimeofday(). Returns the number of microseconds
  13. * since the last timer interupt.
  14. * @monotonic_clock: returns the number of nanoseconds since the init of the
  15. * timer.
  16. * @delay: delays this many clock cycles.
  17. */
  18. struct timer_opts {
  19. char* name;
  20. void (*mark_offset)(void);
  21. unsigned long (*get_offset)(void);
  22. unsigned long long (*monotonic_clock)(void);
  23. void (*delay)(unsigned long);
  24. };
  25. struct init_timer_opts {
  26. int (*init)(char *override);
  27. struct timer_opts *opts;
  28. };
  29. #define TICK_SIZE (tick_nsec / 1000)
  30. extern struct timer_opts* __init select_timer(void);
  31. extern void clock_fallback(void);
  32. void setup_pit_timer(void);
  33. /* Modifiers for buggy PIT handling */
  34. extern int pit_latch_buggy;
  35. extern struct timer_opts *cur_timer;
  36. extern int timer_ack;
  37. /* list of externed timers */
  38. extern struct timer_opts timer_none;
  39. extern struct timer_opts timer_pit;
  40. extern struct init_timer_opts timer_pit_init;
  41. extern struct init_timer_opts timer_tsc_init;
  42. #ifdef CONFIG_X86_CYCLONE_TIMER
  43. extern struct init_timer_opts timer_cyclone_init;
  44. #endif
  45. extern unsigned long calibrate_tsc(void);
  46. extern void init_cpu_khz(void);
  47. extern int recalibrate_cpu_khz(void);
  48. #ifdef CONFIG_HPET_TIMER
  49. extern struct init_timer_opts timer_hpet_init;
  50. extern unsigned long calibrate_tsc_hpet(unsigned long *tsc_hpet_quotient_ptr);
  51. #endif
  52. #ifdef CONFIG_X86_PM_TIMER
  53. extern struct init_timer_opts timer_pmtmr_init;
  54. #endif
  55. #endif