2 * linux/include/asm-cris/fasttimer.h
4 * Fast timers for ETRAX100LX
5 * Copyright (C) 2000-2007 Axis Communications AB
7 #include <linux/time.h> /* struct timeval */
8 #include <linux/timex.h>
10 #ifdef CONFIG_ETRAX_FAST_TIMER
12 typedef void fast_timer_function_type(unsigned long);
15 unsigned long tv_jiff
; /* jiffies */
16 unsigned long tv_usec
; /* microseconds */
19 struct fast_timer
{ /* Close to timer_list */
20 struct fast_timer
*next
;
21 struct fast_timer
*prev
;
22 struct fasttime_t tv_set
;
23 struct fasttime_t tv_expires
;
24 unsigned long delay_us
;
25 fast_timer_function_type
*function
;
30 extern struct fast_timer
*fast_timer_list
;
32 void start_one_shot_timer(struct fast_timer
*t
,
33 fast_timer_function_type
*function
,
35 unsigned long delay_us
,
38 int del_fast_timer(struct fast_timer
* t
);
39 /* return 1 if deleted */
42 void schedule_usleep(unsigned long us
);
45 int fast_timer_init(void);