Paul Mundt | aa01666 | 2006-01-16 22:14:18 -0800 | [diff] [blame] | 1 | #ifndef __ASM_SH_TIMER_H |
| 2 | #define __ASM_SH_TIMER_H |
| 3 | |
| 4 | #include <linux/sysdev.h> |
| 5 | #include <asm/cpu/timer.h> |
| 6 | |
| 7 | struct sys_timer_ops { |
| 8 | int (*init)(void); |
Andriy Skulysh | 3aa770e | 2006-09-27 16:20:22 +0900 | [diff] [blame] | 9 | int (*start)(void); |
| 10 | int (*stop)(void); |
Paul Mundt | 4588214 | 2006-10-04 13:21:45 +0900 | [diff] [blame] | 11 | #ifndef CONFIG_GENERIC_TIME |
Paul Mundt | aa01666 | 2006-01-16 22:14:18 -0800 | [diff] [blame] | 12 | unsigned long (*get_offset)(void); |
Paul Mundt | 4588214 | 2006-10-04 13:21:45 +0900 | [diff] [blame] | 13 | #endif |
Paul Mundt | aa01666 | 2006-01-16 22:14:18 -0800 | [diff] [blame] | 14 | }; |
| 15 | |
| 16 | struct sys_timer { |
| 17 | const char *name; |
| 18 | |
| 19 | struct sys_device dev; |
| 20 | struct sys_timer_ops *ops; |
Paul Mundt | bd15614 | 2006-12-01 13:23:47 +0900 | [diff] [blame] | 21 | |
| 22 | #ifdef CONFIG_NO_IDLE_HZ |
| 23 | struct dyn_tick_timer *dyn_tick; |
| 24 | #endif |
Paul Mundt | aa01666 | 2006-01-16 22:14:18 -0800 | [diff] [blame] | 25 | }; |
| 26 | |
Paul Mundt | bd15614 | 2006-12-01 13:23:47 +0900 | [diff] [blame] | 27 | #ifdef CONFIG_NO_IDLE_HZ |
| 28 | #define DYN_TICK_ENABLED (1 << 1) |
| 29 | |
| 30 | struct dyn_tick_timer { |
| 31 | spinlock_t lock; |
| 32 | unsigned int state; /* Current state */ |
| 33 | int (*enable)(void); /* Enables dynamic tick */ |
| 34 | int (*disable)(void); /* Disables dynamic tick */ |
| 35 | void (*reprogram)(unsigned long); /* Reprograms the timer */ |
| 36 | int (*handler)(int, void *); |
| 37 | }; |
| 38 | |
| 39 | void timer_dyn_reprogram(void); |
| 40 | #else |
| 41 | #define timer_dyn_reprogram() do { } while (0) |
| 42 | #endif |
| 43 | |
Paul Mundt | aa01666 | 2006-01-16 22:14:18 -0800 | [diff] [blame] | 44 | #define TICK_SIZE (tick_nsec / 1000) |
| 45 | |
Paul Mundt | 710ee0c | 2006-11-05 16:48:42 +0900 | [diff] [blame] | 46 | extern struct sys_timer tmu_timer, cmt_timer, mtu2_timer; |
Paul Mundt | aa01666 | 2006-01-16 22:14:18 -0800 | [diff] [blame] | 47 | extern struct sys_timer *sys_timer; |
| 48 | |
Paul Mundt | 4588214 | 2006-10-04 13:21:45 +0900 | [diff] [blame] | 49 | #ifndef CONFIG_GENERIC_TIME |
Paul Mundt | aa01666 | 2006-01-16 22:14:18 -0800 | [diff] [blame] | 50 | static inline unsigned long get_timer_offset(void) |
| 51 | { |
| 52 | return sys_timer->ops->get_offset(); |
| 53 | } |
Paul Mundt | 4588214 | 2006-10-04 13:21:45 +0900 | [diff] [blame] | 54 | #endif |
Paul Mundt | aa01666 | 2006-01-16 22:14:18 -0800 | [diff] [blame] | 55 | |
Paul Mundt | aa01666 | 2006-01-16 22:14:18 -0800 | [diff] [blame] | 56 | /* arch/sh/kernel/timers/timer.c */ |
| 57 | struct sys_timer *get_sys_timer(void); |
| 58 | |
| 59 | /* arch/sh/kernel/time.c */ |
Paul Mundt | 35f3c51 | 2006-10-06 15:31:16 +0900 | [diff] [blame] | 60 | void handle_timer_tick(void); |
Paul Mundt | aa01666 | 2006-01-16 22:14:18 -0800 | [diff] [blame] | 61 | |
| 62 | #endif /* __ASM_SH_TIMER_H */ |