Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / arch / arm / mach-pxa / time.c
blob7b7c0179795bad36e66abcf63fce82abac4619db
1 /*
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>
19 #include <linux/sched.h>
21 #include <asm/div64.h>
22 #include <asm/cnt32_to_63.h>
23 #include <asm/mach/irq.h>
24 #include <asm/mach/time.h>
25 #include <asm/arch/pxa-regs.h>
26 #include <asm/mach-types.h>
29 * This is PXA's sched_clock implementation. This has a resolution
30 * of at least 308 ns and a maximum value of 208 days.
32 * The return value is guaranteed to be monotonic in that range as
33 * long as there is always less than 582 seconds between successive
34 * calls to sched_clock() which should always be the case in practice.
37 #define OSCR2NS_SCALE_FACTOR 10
39 static unsigned long oscr2ns_scale;
41 static void __init set_oscr2ns_scale(unsigned long oscr_rate)
43 unsigned long long v = 1000000000ULL << OSCR2NS_SCALE_FACTOR;
44 do_div(v, oscr_rate);
45 oscr2ns_scale = v;
47 * We want an even value to automatically clear the top bit
48 * returned by cnt32_to_63() without an additional run time
49 * instruction. So if the LSB is 1 then round it up.
51 if (oscr2ns_scale & 1)
52 oscr2ns_scale++;
55 unsigned long long sched_clock(void)
57 unsigned long long v = cnt32_to_63(OSCR);
58 return (v * oscr2ns_scale) >> OSCR2NS_SCALE_FACTOR;
62 #define MIN_OSCR_DELTA 16
64 static irqreturn_t
65 pxa_ost0_interrupt(int irq, void *dev_id)
67 struct clock_event_device *c = dev_id;
69 /* Disarm the compare/match, signal the event. */
70 OIER &= ~OIER_E0;
71 OSSR = OSSR_M0;
72 c->event_handler(c);
74 return IRQ_HANDLED;
77 static int
78 pxa_osmr0_set_next_event(unsigned long delta, struct clock_event_device *dev)
80 unsigned long flags, next, oscr;
82 raw_local_irq_save(flags);
83 OIER |= OIER_E0;
84 next = OSCR + delta;
85 OSMR0 = next;
86 oscr = OSCR;
87 raw_local_irq_restore(flags);
89 return (signed)(next - oscr) <= MIN_OSCR_DELTA ? -ETIME : 0;
92 static void
93 pxa_osmr0_set_mode(enum clock_event_mode mode, struct clock_event_device *dev)
95 unsigned long irqflags;
97 switch (mode) {
98 case CLOCK_EVT_MODE_ONESHOT:
99 raw_local_irq_save(irqflags);
100 OIER &= ~OIER_E0;
101 OSSR = OSSR_M0;
102 raw_local_irq_restore(irqflags);
103 break;
105 case CLOCK_EVT_MODE_UNUSED:
106 case CLOCK_EVT_MODE_SHUTDOWN:
107 /* initializing, released, or preparing for suspend */
108 raw_local_irq_save(irqflags);
109 OIER &= ~OIER_E0;
110 OSSR = OSSR_M0;
111 raw_local_irq_restore(irqflags);
112 break;
114 case CLOCK_EVT_MODE_RESUME:
115 case CLOCK_EVT_MODE_PERIODIC:
116 break;
120 static struct clock_event_device ckevt_pxa_osmr0 = {
121 .name = "osmr0",
122 .features = CLOCK_EVT_FEAT_ONESHOT,
123 .shift = 32,
124 .rating = 200,
125 .cpumask = CPU_MASK_CPU0,
126 .set_next_event = pxa_osmr0_set_next_event,
127 .set_mode = pxa_osmr0_set_mode,
130 static cycle_t pxa_read_oscr(void)
132 return OSCR;
135 static struct clocksource cksrc_pxa_oscr0 = {
136 .name = "oscr0",
137 .rating = 200,
138 .read = pxa_read_oscr,
139 .mask = CLOCKSOURCE_MASK(32),
140 .shift = 20,
141 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
144 static struct irqaction pxa_ost0_irq = {
145 .name = "ost0",
146 .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
147 .handler = pxa_ost0_interrupt,
148 .dev_id = &ckevt_pxa_osmr0,
151 static void __init pxa_timer_init(void)
153 unsigned long clock_tick_rate;
155 OIER = 0;
156 OSSR = OSSR_M0 | OSSR_M1 | OSSR_M2 | OSSR_M3;
158 if (cpu_is_pxa21x() || cpu_is_pxa25x())
159 clock_tick_rate = 3686400;
160 else if (machine_is_mainstone())
161 clock_tick_rate = 3249600;
162 else
163 clock_tick_rate = 3250000;
165 set_oscr2ns_scale(clock_tick_rate);
167 ckevt_pxa_osmr0.mult =
168 div_sc(clock_tick_rate, NSEC_PER_SEC, ckevt_pxa_osmr0.shift);
169 ckevt_pxa_osmr0.max_delta_ns =
170 clockevent_delta2ns(0x7fffffff, &ckevt_pxa_osmr0);
171 ckevt_pxa_osmr0.min_delta_ns =
172 clockevent_delta2ns(MIN_OSCR_DELTA * 2, &ckevt_pxa_osmr0) + 1;
174 cksrc_pxa_oscr0.mult =
175 clocksource_hz2mult(clock_tick_rate, cksrc_pxa_oscr0.shift);
177 setup_irq(IRQ_OST0, &pxa_ost0_irq);
179 clocksource_register(&cksrc_pxa_oscr0);
180 clockevents_register_device(&ckevt_pxa_osmr0);
183 #ifdef CONFIG_PM
184 static unsigned long osmr[4], oier, oscr;
186 static void pxa_timer_suspend(void)
188 osmr[0] = OSMR0;
189 osmr[1] = OSMR1;
190 osmr[2] = OSMR2;
191 osmr[3] = OSMR3;
192 oier = OIER;
193 oscr = OSCR;
196 static void pxa_timer_resume(void)
199 * Ensure that we have at least MIN_OSCR_DELTA between match
200 * register 0 and the OSCR, to guarantee that we will receive
201 * the one-shot timer interrupt. We adjust OSMR0 in preference
202 * to OSCR to guarantee that OSCR is monotonically incrementing.
204 if (osmr[0] - oscr < MIN_OSCR_DELTA)
205 osmr[0] += MIN_OSCR_DELTA;
207 OSMR0 = osmr[0];
208 OSMR1 = osmr[1];
209 OSMR2 = osmr[2];
210 OSMR3 = osmr[3];
211 OIER = oier;
212 OSCR = oscr;
214 #else
215 #define pxa_timer_suspend NULL
216 #define pxa_timer_resume NULL
217 #endif
219 struct sys_timer pxa_timer = {
220 .init = pxa_timer_init,
221 .suspend = pxa_timer_suspend,
222 .resume = pxa_timer_resume,