2 * linux/arch/arm/mach-footbridge/isa-timer.c
4 * Copyright (C) 1998 Russell King.
5 * Copyright (C) 1998 Phil Blundell
7 #include <linux/init.h>
8 #include <linux/interrupt.h>
14 #include <asm/mach/time.h>
19 * ISA timer tick support
21 #define mSEC_10_from_14 ((14318180 + 100) / 200)
23 static unsigned long isa_gettimeoffset(void)
27 static int count_p = (mSEC_10_from_14/6); /* for the first call after boot */
28 static unsigned long jiffies_p = 0;
31 * cache volatile jiffies temporarily; we have IRQs turned off.
33 unsigned long jiffies_t;
35 /* timer count may underflow right here */
36 outb_p(0x00, 0x43); /* latch the count ASAP */
38 count = inb_p(0x40); /* read the latched count */
41 * We do this guaranteed double memory access instead of a _p
42 * postfix in the previous port access. Wheee, hackady hack
46 count |= inb_p(0x40) << 8;
48 /* Detect timer underflows. If we haven't had a timer tick since
49 the last time we were called, and time is apparently going
50 backwards, the counter must have wrapped during this routine. */
51 if ((jiffies_t == jiffies_p) && (count > count_p))
52 count -= (mSEC_10_from_14/6);
54 jiffies_p = jiffies_t;
58 count = (((mSEC_10_from_14/6)-1) - count) * (tick_nsec / 1000);
59 count = (count + (mSEC_10_from_14/6)/2) / (mSEC_10_from_14/6);
65 isa_timer_interrupt(int irq, void *dev_id)
71 static struct irqaction isa_timer_irq = {
72 .name = "ISA timer tick",
73 .handler = isa_timer_interrupt,
74 .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
77 static void __init isa_timer_init(void)
81 /* enable PIT timer */
82 /* set for periodic (4) and LSB/MSB write (0x30) */
84 outb((mSEC_10_from_14/6) & 0xFF, 0x40);
85 outb((mSEC_10_from_14/6) >> 8, 0x40);
87 setup_irq(IRQ_ISA_TIMER, &isa_timer_irq);
90 struct sys_timer isa_timer = {
91 .init = isa_timer_init,
92 .offset = isa_gettimeoffset,