2006-01-17 13:14:18 +07:00
|
|
|
#ifndef __ASM_SH_TIMER_H
|
|
|
|
#define __ASM_SH_TIMER_H
|
|
|
|
|
|
|
|
#include <linux/sysdev.h>
|
2007-05-09 15:33:24 +07:00
|
|
|
#include <linux/clocksource.h>
|
2008-07-29 06:09:44 +07:00
|
|
|
#include <cpu/timer.h>
|
2006-01-17 13:14:18 +07:00
|
|
|
|
|
|
|
struct sys_timer_ops {
|
|
|
|
int (*init)(void);
|
2006-09-27 14:20:22 +07:00
|
|
|
int (*start)(void);
|
|
|
|
int (*stop)(void);
|
2007-05-09 15:33:24 +07:00
|
|
|
cycle_t (*read)(void);
|
2006-10-04 11:21:45 +07:00
|
|
|
#ifndef CONFIG_GENERIC_TIME
|
2006-01-17 13:14:18 +07:00
|
|
|
unsigned long (*get_offset)(void);
|
2006-10-04 11:21:45 +07:00
|
|
|
#endif
|
2006-01-17 13:14:18 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
struct sys_timer {
|
|
|
|
const char *name;
|
|
|
|
|
|
|
|
struct sys_device dev;
|
|
|
|
struct sys_timer_ops *ops;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define TICK_SIZE (tick_nsec / 1000)
|
|
|
|
|
2006-11-05 14:48:42 +07:00
|
|
|
extern struct sys_timer tmu_timer, cmt_timer, mtu2_timer;
|
2006-01-17 13:14:18 +07:00
|
|
|
extern struct sys_timer *sys_timer;
|
|
|
|
|
2006-10-04 11:21:45 +07:00
|
|
|
#ifndef CONFIG_GENERIC_TIME
|
2006-01-17 13:14:18 +07:00
|
|
|
static inline unsigned long get_timer_offset(void)
|
|
|
|
{
|
|
|
|
return sys_timer->ops->get_offset();
|
|
|
|
}
|
2006-10-04 11:21:45 +07:00
|
|
|
#endif
|
2006-01-17 13:14:18 +07:00
|
|
|
|
|
|
|
/* arch/sh/kernel/timers/timer.c */
|
|
|
|
struct sys_timer *get_sys_timer(void);
|
|
|
|
|
|
|
|
/* arch/sh/kernel/time.c */
|
2006-10-06 13:31:16 +07:00
|
|
|
void handle_timer_tick(void);
|
2007-05-09 15:33:24 +07:00
|
|
|
extern unsigned long sh_hpt_frequency;
|
2006-01-17 13:14:18 +07:00
|
|
|
|
|
|
|
#endif /* __ASM_SH_TIMER_H */
|