ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / include / asm-cris / fasttimer.h
1 /* $Id: fasttimer.h,v 1.2 2002/12/11 13:03:43 starvik Exp $
2  * linux/include/asm-cris/fasttimer.h
3  *
4  * Fast timers for ETRAX100LX
5  * This may be useful in other OS than Linux so use 2 space indentation...
6  * Copyright (C) 2000, 2002 Axis Communications AB
7  */
8 #include <linux/config.h>
9 #include <linux/time.h> /* struct timeval */
10 #include <linux/timex.h>
11
12 #ifdef CONFIG_ETRAX_FAST_TIMER
13
14 typedef void fast_timer_function_type(unsigned long);
15
16 struct fast_timer{ /* Close to timer_list */
17   struct fast_timer *next;
18   struct fast_timer *prev;
19   struct timeval tv_set;
20   struct timeval tv_expires;
21   unsigned long delay_us;
22   fast_timer_function_type *function;
23   unsigned long data;
24   const char *name;
25 };
26
27 void start_one_shot_timer(struct fast_timer *t,
28                           fast_timer_function_type *function,
29                           unsigned long data,
30                           unsigned long delay_us,
31                           const char *name);
32
33 int del_fast_timer(struct fast_timer * t);
34 /* return 1 if deleted */
35
36
37 void schedule_usleep(unsigned long us);
38
39
40 void fast_timer_init(void);
41
42 #endif