[SERIAL] serial_cs: Add quirk for brainboxes 2-port RS232 card
[linux-2.6/verdex.git] / include / asm-sh / timer.h
blobc7ab28095ba0ea4ffabe410108d57a33c9f5e56b
1 #ifndef __ASM_SH_TIMER_H
2 #define __ASM_SH_TIMER_H
4 #include <linux/sysdev.h>
5 #include <asm/cpu/timer.h>
7 struct sys_timer_ops {
8 int (*init)(void);
9 int (*start)(void);
10 int (*stop)(void);
11 unsigned long (*get_offset)(void);
12 unsigned long (*get_frequency)(void);
15 struct sys_timer {
16 const char *name;
18 struct sys_device dev;
19 struct sys_timer_ops *ops;
22 #define TICK_SIZE (tick_nsec / 1000)
24 extern struct sys_timer tmu_timer;
25 extern struct sys_timer *sys_timer;
27 static inline unsigned long get_timer_offset(void)
29 return sys_timer->ops->get_offset();
32 static inline unsigned long get_timer_frequency(void)
34 return sys_timer->ops->get_frequency();
37 /* arch/sh/kernel/timers/timer.c */
38 struct sys_timer *get_sys_timer(void);
40 /* arch/sh/kernel/time.c */
41 void handle_timer_tick(struct pt_regs *);
43 #endif /* __ASM_SH_TIMER_H */