2 * arch/arm/mach-pxa/time.c
4 * PXA clocksource, clockevents, and OST interrupt handlers.
5 * Copyright (c) 2007 by Bill Gatliff <bgat@billgatliff.com>.
7 * Derived from Nicolas Pitre's PXA timer handler Copyright (c) 2001
8 * by MontaVista Software, Inc. (Nico, your code rocks!)
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
15 #include <linux/kernel.h>
16 #include <linux/init.h>
17 #include <linux/interrupt.h>
18 #include <linux/clockchips.h>
20 #include <asm/div64.h>
21 #include <asm/mach/irq.h>
22 #include <asm/mach/time.h>
23 #include <asm/sched_clock.h>
24 #include <mach/regs-ost.h>
27 * This is PXA's sched_clock implementation. This has a resolution
28 * of at least 308 ns and a maximum value of 208 days.
30 * The return value is guaranteed to be monotonic in that range as
31 * long as there is always less than 582 seconds between successive
32 * calls to sched_clock() which should always be the case in practice.
35 static u32 notrace
pxa_read_sched_clock(void)
41 #define MIN_OSCR_DELTA 16
44 pxa_ost0_interrupt(int irq
, void *dev_id
)
46 struct clock_event_device
*c
= dev_id
;
48 /* Disarm the compare/match, signal the event. */
57 pxa_osmr0_set_next_event(unsigned long delta
, struct clock_event_device
*dev
)
59 unsigned long next
, oscr
;
66 return (signed)(next
- oscr
) <= MIN_OSCR_DELTA
? -ETIME
: 0;
70 pxa_osmr0_set_mode(enum clock_event_mode mode
, struct clock_event_device
*dev
)
73 case CLOCK_EVT_MODE_ONESHOT
:
78 case CLOCK_EVT_MODE_UNUSED
:
79 case CLOCK_EVT_MODE_SHUTDOWN
:
80 /* initializing, released, or preparing for suspend */
85 case CLOCK_EVT_MODE_RESUME
:
86 case CLOCK_EVT_MODE_PERIODIC
:
91 static struct clock_event_device ckevt_pxa_osmr0
= {
93 .features
= CLOCK_EVT_FEAT_ONESHOT
,
95 .set_next_event
= pxa_osmr0_set_next_event
,
96 .set_mode
= pxa_osmr0_set_mode
,
99 static struct irqaction pxa_ost0_irq
= {
101 .flags
= IRQF_DISABLED
| IRQF_TIMER
| IRQF_IRQPOLL
,
102 .handler
= pxa_ost0_interrupt
,
103 .dev_id
= &ckevt_pxa_osmr0
,
106 static void __init
pxa_timer_init(void)
108 unsigned long clock_tick_rate
= get_clock_tick_rate();
111 OSSR
= OSSR_M0
| OSSR_M1
| OSSR_M2
| OSSR_M3
;
113 setup_sched_clock(pxa_read_sched_clock
, 32, clock_tick_rate
);
115 clockevents_calc_mult_shift(&ckevt_pxa_osmr0
, clock_tick_rate
, 4);
116 ckevt_pxa_osmr0
.max_delta_ns
=
117 clockevent_delta2ns(0x7fffffff, &ckevt_pxa_osmr0
);
118 ckevt_pxa_osmr0
.min_delta_ns
=
119 clockevent_delta2ns(MIN_OSCR_DELTA
* 2, &ckevt_pxa_osmr0
) + 1;
120 ckevt_pxa_osmr0
.cpumask
= cpumask_of(0);
122 setup_irq(IRQ_OST0
, &pxa_ost0_irq
);
124 clocksource_mmio_init(&OSCR
, "oscr0", clock_tick_rate
, 200, 32,
125 clocksource_mmio_readl_up
);
126 clockevents_register_device(&ckevt_pxa_osmr0
);
130 static unsigned long osmr
[4], oier
, oscr
;
132 static void pxa_timer_suspend(void)
142 static void pxa_timer_resume(void)
145 * Ensure that we have at least MIN_OSCR_DELTA between match
146 * register 0 and the OSCR, to guarantee that we will receive
147 * the one-shot timer interrupt. We adjust OSMR0 in preference
148 * to OSCR to guarantee that OSCR is monotonically incrementing.
150 if (osmr
[0] - oscr
< MIN_OSCR_DELTA
)
151 osmr
[0] += MIN_OSCR_DELTA
;
161 #define pxa_timer_suspend NULL
162 #define pxa_timer_resume NULL
165 struct sys_timer pxa_timer
= {
166 .init
= pxa_timer_init
,
167 .suspend
= pxa_timer_suspend
,
168 .resume
= pxa_timer_resume
,