#ifndef __TIMER_H__
#define __TIMER_H__


#define CLOCK_TICK_RATE 0x1234dd /* AMD Elan has different frequency! */

#define CLOCK_TICK_FACTOR	20/* Factor of both 1000000 and CLOCK_TICK_RATE */

#define HZ 100
#define LATCH  ((CLOCK_TICK_RATE + HZ/2) / HZ)	/* For divider */

#endif

