[PATCH] I2C: Add support for the LPC47M15x and LPC47M192 chips to smsc47m1
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / asm-i386 / timer.h
blobc347098498397e67c1bf66453806ef3f7c811037
1 #ifndef _ASMi386_TIMER_H
2 #define _ASMi386_TIMER_H
3 #include <linux/init.h>
5 /**
6 * struct timer_ops - used to define a timer source
8 * @name: name of the timer.
9 * @init: Probes and initializes the timer. Takes clock= override
10 * string as an argument. Returns 0 on success, anything else
11 * on failure.
12 * @mark_offset: called by the timer interrupt.
13 * @get_offset: called by gettimeofday(). Returns the number of microseconds
14 * since the last timer interupt.
15 * @monotonic_clock: returns the number of nanoseconds since the init of the
16 * timer.
17 * @delay: delays this many clock cycles.
19 struct timer_opts {
20 char* name;
21 void (*mark_offset)(void);
22 unsigned long (*get_offset)(void);
23 unsigned long long (*monotonic_clock)(void);
24 void (*delay)(unsigned long);
27 struct init_timer_opts {
28 int (*init)(char *override);
29 struct timer_opts *opts;
32 #define TICK_SIZE (tick_nsec / 1000)
34 extern struct timer_opts* __init select_timer(void);
35 extern void clock_fallback(void);
36 void setup_pit_timer(void);
38 /* Modifiers for buggy PIT handling */
40 extern int pit_latch_buggy;
42 extern struct timer_opts *cur_timer;
43 extern int timer_ack;
45 /* list of externed timers */
46 extern struct timer_opts timer_none;
47 extern struct timer_opts timer_pit;
48 extern struct init_timer_opts timer_pit_init;
49 extern struct init_timer_opts timer_tsc_init;
50 #ifdef CONFIG_X86_CYCLONE_TIMER
51 extern struct init_timer_opts timer_cyclone_init;
52 #endif
54 extern unsigned long calibrate_tsc(void);
55 extern void init_cpu_khz(void);
56 extern int recalibrate_cpu_khz(void);
57 #ifdef CONFIG_HPET_TIMER
58 extern struct init_timer_opts timer_hpet_init;
59 extern unsigned long calibrate_tsc_hpet(unsigned long *tsc_hpet_quotient_ptr);
60 #endif
62 #ifdef CONFIG_X86_PM_TIMER
63 extern struct init_timer_opts timer_pmtmr_init;
64 #endif
65 #endif