Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux...
[linux-2.6-block.git] / arch / arm / mach-rpc / time.c
CommitLineData
1da177e4
LT
1/*
2 * linux/arch/arm/common/time-acorn.c
3 *
4 * Copyright (c) 1996-2000 Russell King.
5 *
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.
9 *
10 * Changelog:
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
15 */
16#include <linux/timex.h>
17#include <linux/init.h>
18#include <linux/interrupt.h>
c4bfa28a 19#include <linux/irq.h>
fced80c7 20#include <linux/io.h>
1da177e4 21
a09e64fb 22#include <mach/hardware.h>
1da177e4
LT
23#include <asm/hardware/ioc.h>
24
25#include <asm/mach/time.h>
26
53985371
UKK
27#define RPC_CLOCK_FREQ 2000000
28#define RPC_LATCH DIV_ROUND_CLOSEST(RPC_CLOCK_FREQ, HZ)
29
23c197b7 30static u32 ioc_timer_gettimeoffset(void)
1da177e4
LT
31{
32 unsigned int count1, count2, status;
33 long offset;
34
35 ioc_writeb (0, IOC_T0LATCH);
36 barrier ();
37 count1 = ioc_readb(IOC_T0CNTL) | (ioc_readb(IOC_T0CNTH) << 8);
38 barrier ();
39 status = ioc_readb(IOC_IRQREQA);
40 barrier ();
41 ioc_writeb (0, IOC_T0LATCH);
42 barrier ();
43 count2 = ioc_readb(IOC_T0CNTL) | (ioc_readb(IOC_T0CNTH) << 8);
44
45 offset = count2;
46 if (count2 < count1) {
47 /*
48 * We have not had an interrupt between reading count1
49 * and count2.
50 */
51 if (status & (1 << 5))
53985371 52 offset -= RPC_LATCH;
1da177e4
LT
53 } else if (count2 > count1) {
54 /*
55 * We have just had another interrupt between reading
56 * count1 and count2.
57 */
53985371 58 offset -= RPC_LATCH;
1da177e4
LT
59 }
60
53985371
UKK
61 offset = (RPC_LATCH - offset) * (tick_nsec / 1000);
62 return DIV_ROUND_CLOSEST(offset, RPC_LATCH) * 1000;
1da177e4
LT
63}
64
65void __init ioctime_init(void)
66{
53985371
UKK
67 ioc_writeb(RPC_LATCH & 255, IOC_T0LTCHL);
68 ioc_writeb(RPC_LATCH >> 8, IOC_T0LTCHH);
1da177e4
LT
69 ioc_writeb(0, IOC_T0GO);
70}
71
72static irqreturn_t
0cd61b68 73ioc_timer_interrupt(int irq, void *dev_id)
1da177e4 74{
0cd61b68 75 timer_tick();
1da177e4
LT
76 return IRQ_HANDLED;
77}
78
79static struct irqaction ioc_timer_irq = {
80 .name = "timer",
1da177e4
LT
81 .handler = ioc_timer_interrupt
82};
83
84/*
85 * Set up timer interrupt.
86 */
6bb27d73 87void __init ioc_timer_init(void)
1da177e4 88{
23c197b7 89 arch_gettimeoffset = ioc_timer_gettimeoffset;
1da177e4 90 ioctime_init();
927b6c4d 91 setup_irq(IRQ_TIMER0, &ioc_timer_irq);
1da177e4 92}