2 * arch/arm/mach-iop3xx/iop331-time.c
4 * Timer code for IOP331 based systems
6 * Author: Dave Jiang <dave.jiang@intel.com>
8 * Copyright 2003 Intel Corp.
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
16 #include <linux/kernel.h>
17 #include <linux/interrupt.h>
18 #include <linux/time.h>
19 #include <linux/init.h>
20 #include <linux/timex.h>
22 #include <asm/hardware.h>
25 #include <asm/uaccess.h>
26 #include <asm/mach-types.h>
27 #include <asm/mach/irq.h>
28 #include <asm/mach/time.h>
30 static inline unsigned long get_elapsed(void)
32 return LATCH - *IOP331_TU_TCR0;
35 static unsigned long iop331_gettimeoffset(void)
37 unsigned long elapsed, usec;
41 * If an interrupt was pending before we read the timer,
42 * we've already wrapped. Factor this into the time.
43 * If an interrupt was pending after we read the timer,
44 * it may have wrapped between checking the interrupt
45 * status and reading the timer. Re-read the timer to
46 * be sure its value is after the wrap.
49 asm volatile("mrc p6, 0, %0, c6, c1, 0" : "=r" (tisr1));
50 elapsed = get_elapsed();
51 asm volatile("mrc p6, 0, %0, c6, c1, 0" : "=r" (tisr2));
56 elapsed = LATCH + get_elapsed();
59 * Now convert them to usec.
61 usec = (unsigned long)(elapsed / (CLOCK_TICK_RATE/1000000));
67 iop331_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
71 write_seqlock(&xtime_lock);
73 asm volatile("mrc p6, 0, %0, c6, c1, 0" : "=r" (tisr));
75 asm volatile("mcr p6, 0, %0, c6, c1, 0" : : "r" (tisr));
79 write_sequnlock(&xtime_lock);
83 static struct irqaction iop331_timer_irq = {
84 .name = "IOP331 Timer Tick",
85 .handler = iop331_timer_interrupt,
86 .flags = SA_INTERRUPT | SA_TIMER,
89 static void __init iop331_timer_init(void)
93 setup_irq(IRQ_IOP331_TIMER0, &iop331_timer_irq);
95 timer_ctl = IOP331_TMR_EN | IOP331_TMR_PRIVILEGED | IOP331_TMR_RELOAD |
98 asm volatile("mcr p6, 0, %0, c4, c1, 0" : : "r" (LATCH));
100 asm volatile("mcr p6, 0, %0, c0, c1, 0" : : "r" (timer_ctl));
104 struct sys_timer iop331_timer = {
105 .init = iop331_timer_init,
106 .offset = iop331_gettimeoffset,