2 * linux/arch/arm/common/time-acorn.c
4 * Copyright (c) 1996-2000 Russell King.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
11 * 24-Sep-1996 RMK Created
12 * 10-Oct-1996 RMK Brought up to date with arch-sa110eval
13 * 04-Dec-1997 RMK Updated for new arch/arm/time.c
14 * 13=Jun-2004 DS Moved to arch/arm/common b/c shared w/CLPS7500
16 #include <linux/timex.h>
17 #include <linux/init.h>
18 #include <linux/interrupt.h>
19 #include <linux/irq.h>
22 #include <mach/hardware.h>
23 #include <asm/hardware/ioc.h>
25 #include <asm/mach/time.h>
27 #define RPC_CLOCK_FREQ 2000000
28 #define RPC_LATCH DIV_ROUND_CLOSEST(RPC_CLOCK_FREQ, HZ)
30 static u32 ioc_timer_gettimeoffset(void)
32 unsigned int count1, count2, status;
35 ioc_writeb (0, IOC_T0LATCH);
37 count1 = ioc_readb(IOC_T0CNTL) | (ioc_readb(IOC_T0CNTH) << 8);
39 status = ioc_readb(IOC_IRQREQA);
41 ioc_writeb (0, IOC_T0LATCH);
43 count2 = ioc_readb(IOC_T0CNTL) | (ioc_readb(IOC_T0CNTH) << 8);
46 if (count2 < count1) {
48 * We have not had an interrupt between reading count1
51 if (status & (1 << 5))
53 } else if (count2 > count1) {
55 * We have just had another interrupt between reading
61 offset = (RPC_LATCH - offset) * (tick_nsec / 1000);
62 return DIV_ROUND_CLOSEST(offset, RPC_LATCH) * 1000;
65 void __init ioctime_init(void)
67 ioc_writeb(RPC_LATCH & 255, IOC_T0LTCHL);
68 ioc_writeb(RPC_LATCH >> 8, IOC_T0LTCHH);
69 ioc_writeb(0, IOC_T0GO);
73 ioc_timer_interrupt(int irq, void *dev_id)
79 static struct irqaction ioc_timer_irq = {
81 .handler = ioc_timer_interrupt
85 * Set up timer interrupt.
87 void __init ioc_timer_init(void)
89 arch_gettimeoffset = ioc_timer_gettimeoffset;
91 setup_irq(IRQ_TIMER0, &ioc_timer_irq);