2 * linux/arch/arm/mach-sa1100/time.c
4 * Copyright (C) 1998 Deborah Wallach.
5 * Twiddles (C) 1999 Hugo Fiennes <hugo@empeg.com>
7 * 2000/03/29 (C) Nicolas Pitre <nico@fluxnic.net>
8 * Rewritten: big cleanup, much simpler, better HZ accuracy.
11 #include <linux/init.h>
12 #include <linux/errno.h>
13 #include <linux/interrupt.h>
14 #include <linux/irq.h>
15 #include <linux/timex.h>
16 #include <linux/clockchips.h>
18 #include <asm/mach/time.h>
19 #include <asm/sched_clock.h>
20 #include <mach/hardware.h>
22 static u32 notrace
sa1100_read_sched_clock(void)
27 #define MIN_OSCR_DELTA 2
29 static irqreturn_t
sa1100_ost0_interrupt(int irq
, void *dev_id
)
31 struct clock_event_device
*c
= dev_id
;
33 /* Disarm the compare/match, signal the event. */
42 sa1100_osmr0_set_next_event(unsigned long delta
, struct clock_event_device
*c
)
44 unsigned long next
, oscr
;
51 return (signed)(next
- oscr
) <= MIN_OSCR_DELTA
? -ETIME
: 0;
55 sa1100_osmr0_set_mode(enum clock_event_mode mode
, struct clock_event_device
*c
)
58 case CLOCK_EVT_MODE_ONESHOT
:
59 case CLOCK_EVT_MODE_UNUSED
:
60 case CLOCK_EVT_MODE_SHUTDOWN
:
65 case CLOCK_EVT_MODE_RESUME
:
66 case CLOCK_EVT_MODE_PERIODIC
:
71 static struct clock_event_device ckevt_sa1100_osmr0
= {
73 .features
= CLOCK_EVT_FEAT_ONESHOT
,
75 .set_next_event
= sa1100_osmr0_set_next_event
,
76 .set_mode
= sa1100_osmr0_set_mode
,
79 static struct irqaction sa1100_timer_irq
= {
81 .flags
= IRQF_DISABLED
| IRQF_TIMER
| IRQF_IRQPOLL
,
82 .handler
= sa1100_ost0_interrupt
,
83 .dev_id
= &ckevt_sa1100_osmr0
,
86 static void __init
sa1100_timer_init(void)
89 OSSR
= OSSR_M0
| OSSR_M1
| OSSR_M2
| OSSR_M3
;
91 setup_sched_clock(sa1100_read_sched_clock
, 32, 3686400);
93 clockevents_calc_mult_shift(&ckevt_sa1100_osmr0
, 3686400, 4);
94 ckevt_sa1100_osmr0
.max_delta_ns
=
95 clockevent_delta2ns(0x7fffffff, &ckevt_sa1100_osmr0
);
96 ckevt_sa1100_osmr0
.min_delta_ns
=
97 clockevent_delta2ns(MIN_OSCR_DELTA
* 2, &ckevt_sa1100_osmr0
) + 1;
98 ckevt_sa1100_osmr0
.cpumask
= cpumask_of(0);
100 setup_irq(IRQ_OST0
, &sa1100_timer_irq
);
102 clocksource_mmio_init(&OSCR
, "oscr", CLOCK_TICK_RATE
, 200, 32,
103 clocksource_mmio_readl_up
);
104 clockevents_register_device(&ckevt_sa1100_osmr0
);
108 unsigned long osmr
[4], oier
;
110 static void sa1100_timer_suspend(void)
119 static void sa1100_timer_resume(void)
129 * OSMR0 is the system timer: make sure OSCR is sufficiently behind
131 OSCR
= OSMR0
- LATCH
;
134 #define sa1100_timer_suspend NULL
135 #define sa1100_timer_resume NULL
138 struct sys_timer sa1100_timer
= {
139 .init
= sa1100_timer_init
,
140 .suspend
= sa1100_timer_suspend
,
141 .resume
= sa1100_timer_resume
,