blob: d48d1d5bea0a2515758a4795a292ea6dfc7f2d2c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright 2001 MontaVista Software Inc.
3 * Author: Jun Sun, jsun@mvista.com or jsun@junsun.net
4 * Copyright (c) 2003, 2004 Maciej W. Rozycki
5 *
6 * Common time service routines for MIPS machines. See
7 * Documentation/mips/time.README.
8 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or (at your
12 * option) any later version.
13 */
14#include <linux/types.h>
15#include <linux/kernel.h>
16#include <linux/init.h>
17#include <linux/sched.h>
18#include <linux/param.h>
19#include <linux/time.h>
20#include <linux/timex.h>
21#include <linux/smp.h>
22#include <linux/kernel_stat.h>
23#include <linux/spinlock.h>
24#include <linux/interrupt.h>
25#include <linux/module.h>
26
27#include <asm/bootinfo.h>
Ralf Baechleec74e362005-07-13 11:48:45 +000028#include <asm/cache.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <asm/compiler.h>
30#include <asm/cpu.h>
31#include <asm/cpu-features.h>
32#include <asm/div64.h>
33#include <asm/sections.h>
34#include <asm/time.h>
35
36/*
37 * The integer part of the number of usecs per jiffy is taken from tick,
38 * but the fractional part is not recorded, so we calculate it using the
39 * initial value of HZ. This aids systems where tick isn't really an
40 * integer (e.g. for HZ = 128).
41 */
42#define USECS_PER_JIFFY TICK_SIZE
43#define USECS_PER_JIFFY_FRAC ((unsigned long)(u32)((1000000ULL << 32) / HZ))
44
45#define TICK_SIZE (tick_nsec / 1000)
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047/*
48 * forward reference
49 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070050DEFINE_SPINLOCK(rtc_lock);
51
52/*
53 * By default we provide the null RTC ops
54 */
55static unsigned long null_rtc_get_time(void)
56{
57 return mktime(2000, 1, 1, 0, 0, 0);
58}
59
60static int null_rtc_set_time(unsigned long sec)
61{
62 return 0;
63}
64
Yoichi Yuasad23ee8f2006-03-27 01:16:33 -080065unsigned long (*rtc_mips_get_time)(void) = null_rtc_get_time;
66int (*rtc_mips_set_time)(unsigned long) = null_rtc_set_time;
67int (*rtc_mips_set_mmss)(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070/* how many counter cycles in a jiffy */
Ralf Baechleec74e362005-07-13 11:48:45 +000071static unsigned long cycles_per_jiffy __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Linus Torvalds1da177e2005-04-16 15:20:36 -070073/* expirelo is the count value for next CPU timer interrupt */
74static unsigned int expirelo;
75
76
77/*
78 * Null timer ack for systems not needing one (e.g. i8254).
79 */
80static void null_timer_ack(void) { /* nothing */ }
81
82/*
83 * Null high precision timer functions for systems lacking one.
84 */
Atsushi Nemoto00598562006-11-12 00:10:28 +090085static cycle_t null_hpt_read(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
87 return 0;
88}
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090/*
91 * Timer ack for an R4k-compatible timer of a known frequency.
92 */
93static void c0_timer_ack(void)
94{
95 unsigned int count;
96
97 /* Ack this timer interrupt and set the next one. */
98 expirelo += cycles_per_jiffy;
99 write_c0_compare(expirelo);
100
101 /* Check to see if we have missed any timer interrupts. */
Ralf Baechle41c594a2006-04-05 09:45:45 +0100102 while (((count = read_c0_count()) - expirelo) < 0x7fffffff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 /* missed_timer_count++; */
104 expirelo = count + cycles_per_jiffy;
105 write_c0_compare(expirelo);
106 }
107}
108
109/*
110 * High precision timer functions for a R4k-compatible timer.
111 */
Atsushi Nemoto00598562006-11-12 00:10:28 +0900112static cycle_t c0_hpt_read(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
114 return read_c0_count();
115}
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117/* For use both as a high precision timer and an interrupt source. */
Atsushi Nemoto16b7b2a2006-10-24 00:21:27 +0900118static void __init c0_hpt_timer_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
Atsushi Nemoto16b7b2a2006-10-24 00:21:27 +0900120 expirelo = read_c0_count() + cycles_per_jiffy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 write_c0_compare(expirelo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
123
124int (*mips_timer_state)(void);
125void (*mips_timer_ack)(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127/* last time when xtime and rtc are sync'ed up */
128static long last_rtc_update;
129
130/*
131 * local_timer_interrupt() does profiling and process accounting
132 * on a per-CPU basis.
133 *
134 * In UP mode, it is invoked from the (global) timer_interrupt.
135 *
136 * In SMP mode, it might invoked by per-CPU timer interrupt, or
137 * a broadcasted inter-processor interrupt which itself is triggered
138 * by the global timer interrupt.
139 */
David Howells7d12e782006-10-05 14:55:46 +0100140void local_timer_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
Ralf Baechle937a8012006-10-07 19:44:33 +0100142 profile_tick(CPU_PROFILING);
David Howells7d12e782006-10-05 14:55:46 +0100143 update_process_times(user_mode(get_irq_regs()));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
146/*
147 * High-level timer interrupt service routines. This function
148 * is set as irqaction->handler and is invoked through do_IRQ.
149 */
David Howells7d12e782006-10-05 14:55:46 +0100150irqreturn_t timer_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
Ralf Baechled6bd0e62006-03-14 23:46:58 +0000152 write_seqlock(&xtime_lock);
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 mips_timer_ack();
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 /*
157 * call the generic timer interrupt handling
158 */
Atsushi Nemoto3171a032006-09-29 02:00:32 -0700159 do_timer(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 /*
162 * If we have an externally synchronized Linux clock, then update
Yoichi Yuasad23ee8f2006-03-27 01:16:33 -0800163 * CMOS clock accordingly every ~11 minutes. rtc_mips_set_time() has to be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 * called as close as possible to 500 ms before the new second starts.
165 */
john stultzb149ee22005-09-06 15:17:46 -0700166 if (ntp_synced() &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 xtime.tv_sec > last_rtc_update + 660 &&
168 (xtime.tv_nsec / 1000) >= 500000 - ((unsigned) TICK_SIZE) / 2 &&
169 (xtime.tv_nsec / 1000) <= 500000 + ((unsigned) TICK_SIZE) / 2) {
Yoichi Yuasad23ee8f2006-03-27 01:16:33 -0800170 if (rtc_mips_set_mmss(xtime.tv_sec) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 last_rtc_update = xtime.tv_sec;
172 } else {
173 /* do it again in 60 s */
174 last_rtc_update = xtime.tv_sec - 600;
175 }
176 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Ralf Baechled6bd0e62006-03-14 23:46:58 +0000178 write_sequnlock(&xtime_lock);
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 /*
181 * In UP mode, we call local_timer_interrupt() to do profiling
182 * and process accouting.
183 *
184 * In SMP mode, local_timer_interrupt() is invoked by appropriate
185 * low-level local timer interrupt handler.
186 */
David Howells7d12e782006-10-05 14:55:46 +0100187 local_timer_interrupt(irq, dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189 return IRQ_HANDLED;
190}
191
David Howells7d12e782006-10-05 14:55:46 +0100192int null_perf_irq(void)
Ralf Baechleba339c02005-12-09 12:29:38 +0000193{
194 return 0;
195}
196
David Howells7d12e782006-10-05 14:55:46 +0100197int (*perf_irq)(void) = null_perf_irq;
Ralf Baechleba339c02005-12-09 12:29:38 +0000198
199EXPORT_SYMBOL(null_perf_irq);
200EXPORT_SYMBOL(perf_irq);
201
Chris Dearmanffe9ee42007-05-24 22:24:20 +0100202/*
Ralf Baechle3b1d4ed2007-06-20 22:27:10 +0100203 * Timer interrupt
204 */
205int cp0_compare_irq;
206
207/*
Chris Dearmanffe9ee42007-05-24 22:24:20 +0100208 * Performance counter IRQ or -1 if shared with timer
209 */
Ralf Baechle3b1d4ed2007-06-20 22:27:10 +0100210int cp0_perfcount_irq;
211EXPORT_SYMBOL_GPL(cp0_perfcount_irq);
Chris Dearmanffe9ee42007-05-24 22:24:20 +0100212
213/*
214 * Possibly handle a performance counter interrupt.
215 * Return true if the timer interrupt should not be checked
216 */
217static inline int handle_perf_irq (int r2)
218{
219 /*
220 * The performance counter overflow interrupt may be shared with the
Ralf Baechle3b1d4ed2007-06-20 22:27:10 +0100221 * timer interrupt (cp0_perfcount_irq < 0). If it is and a
Chris Dearmanffe9ee42007-05-24 22:24:20 +0100222 * performance counter has overflowed (perf_irq() == IRQ_HANDLED)
223 * and we can't reliably determine if a counter interrupt has also
224 * happened (!r2) then don't check for a timer interrupt.
225 */
Ralf Baechle3b1d4ed2007-06-20 22:27:10 +0100226 return (cp0_perfcount_irq < 0) &&
Chris Dearmanffe9ee42007-05-24 22:24:20 +0100227 perf_irq() == IRQ_HANDLED &&
228 !r2;
229}
230
Ralf Baechle937a8012006-10-07 19:44:33 +0100231asmlinkage void ll_timer_interrupt(int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
Ralf Baechleba339c02005-12-09 12:29:38 +0000233 int r2 = cpu_has_mips_r2;
234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 irq_enter();
236 kstat_this_cpu.irqs[irq]++;
237
Chris Dearmanffe9ee42007-05-24 22:24:20 +0100238 if (handle_perf_irq(r2))
239 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Chris Dearmanffe9ee42007-05-24 22:24:20 +0100241 if (r2 && ((read_c0_cause() & (1 << 30)) == 0))
242 goto out;
243
244 timer_interrupt(irq, NULL);
Ralf Baechleba339c02005-12-09 12:29:38 +0000245
246out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 irq_exit();
248}
249
Ralf Baechle937a8012006-10-07 19:44:33 +0100250asmlinkage void ll_local_timer_interrupt(int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
252 irq_enter();
253 if (smp_processor_id() != 0)
254 kstat_this_cpu.irqs[irq]++;
255
256 /* we keep interrupt disabled all the time */
David Howells7d12e782006-10-05 14:55:46 +0100257 local_timer_interrupt(irq, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 irq_exit();
260}
261
262/*
263 * time_init() - it does the following things.
264 *
265 * 1) board_time_init() -
266 * a) (optional) set up RTC routines,
267 * b) (optional) calibrate and set the mips_hpt_frequency
Atsushi Nemoto16b7b2a2006-10-24 00:21:27 +0900268 * (only needed if you intended to use cpu counter as timer interrupt
269 * source)
Yoichi Yuasad23ee8f2006-03-27 01:16:33 -0800270 * 2) setup xtime based on rtc_mips_get_time().
Atsushi Nemoto16b7b2a2006-10-24 00:21:27 +0900271 * 3) calculate a couple of cached variables for later usage
272 * 4) plat_timer_setup() -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 * a) (optional) over-write any choices made above by time_init().
274 * b) machine specific code should setup the timer irqaction.
275 * c) enable the timer interrupt
276 */
277
278void (*board_time_init)(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280unsigned int mips_hpt_frequency;
281
282static struct irqaction timer_irqaction = {
283 .handler = timer_interrupt,
Chris Dearmanffe9ee42007-05-24 22:24:20 +0100284 .flags = IRQF_DISABLED | IRQF_PERCPU,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 .name = "timer",
286};
287
288static unsigned int __init calibrate_hpt(void)
289{
Atsushi Nemoto00598562006-11-12 00:10:28 +0900290 cycle_t frequency, hpt_start, hpt_end, hpt_count, hz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292 const int loops = HZ / 10;
293 int log_2_loops = 0;
294 int i;
295
296 /*
297 * We want to calibrate for 0.1s, but to avoid a 64-bit
298 * division we round the number of loops up to the nearest
299 * power of 2.
300 */
301 while (loops > 1 << log_2_loops)
302 log_2_loops++;
303 i = 1 << log_2_loops;
304
305 /*
306 * Wait for a rising edge of the timer interrupt.
307 */
308 while (mips_timer_state());
309 while (!mips_timer_state());
310
311 /*
312 * Now see how many high precision timer ticks happen
313 * during the calculated number of periods between timer
314 * interrupts.
315 */
Atsushi Nemoto00598562006-11-12 00:10:28 +0900316 hpt_start = clocksource_mips.read();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 do {
318 while (mips_timer_state());
319 while (!mips_timer_state());
320 } while (--i);
Atsushi Nemoto00598562006-11-12 00:10:28 +0900321 hpt_end = clocksource_mips.read();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Atsushi Nemoto00598562006-11-12 00:10:28 +0900323 hpt_count = (hpt_end - hpt_start) & clocksource_mips.mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 hz = HZ;
Atsushi Nemoto00598562006-11-12 00:10:28 +0900325 frequency = hpt_count * hz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 return frequency >> log_2_loops;
328}
329
Atsushi Nemoto00598562006-11-12 00:10:28 +0900330struct clocksource clocksource_mips = {
Atsushi Nemoto16b7b2a2006-10-24 00:21:27 +0900331 .name = "MIPS",
Franck Bui-Huu55d0b4e2007-05-04 17:36:44 +0200332 .mask = CLOCKSOURCE_MASK(32),
Thomas Gleixner877fe382007-02-16 01:27:40 -0800333 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
Atsushi Nemoto16b7b2a2006-10-24 00:21:27 +0900334};
335
336static void __init init_mips_clocksource(void)
337{
338 u64 temp;
339 u32 shift;
340
Atsushi Nemoto00598562006-11-12 00:10:28 +0900341 if (!mips_hpt_frequency || clocksource_mips.read == null_hpt_read)
Atsushi Nemoto16b7b2a2006-10-24 00:21:27 +0900342 return;
343
344 /* Calclate a somewhat reasonable rating value */
345 clocksource_mips.rating = 200 + mips_hpt_frequency / 10000000;
346 /* Find a shift value */
347 for (shift = 32; shift > 0; shift--) {
348 temp = (u64) NSEC_PER_SEC << shift;
349 do_div(temp, mips_hpt_frequency);
350 if ((temp >> 32) == 0)
351 break;
352 }
353 clocksource_mips.shift = shift;
354 clocksource_mips.mult = (u32)temp;
Atsushi Nemoto16b7b2a2006-10-24 00:21:27 +0900355
356 clocksource_register(&clocksource_mips);
357}
358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359void __init time_init(void)
360{
361 if (board_time_init)
362 board_time_init();
363
Yoichi Yuasad23ee8f2006-03-27 01:16:33 -0800364 if (!rtc_mips_set_mmss)
365 rtc_mips_set_mmss = rtc_mips_set_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Yoichi Yuasad23ee8f2006-03-27 01:16:33 -0800367 xtime.tv_sec = rtc_mips_get_time();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 xtime.tv_nsec = 0;
369
370 set_normalized_timespec(&wall_to_monotonic,
371 -xtime.tv_sec, -xtime.tv_nsec);
372
373 /* Choose appropriate high precision timer routines. */
Atsushi Nemoto00598562006-11-12 00:10:28 +0900374 if (!cpu_has_counter && !clocksource_mips.read)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 /* No high precision timer -- sorry. */
Atsushi Nemoto00598562006-11-12 00:10:28 +0900376 clocksource_mips.read = null_hpt_read;
Atsushi Nemoto16b7b2a2006-10-24 00:21:27 +0900377 else if (!mips_hpt_frequency && !mips_timer_state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 /* A high precision timer of unknown frequency. */
Atsushi Nemoto00598562006-11-12 00:10:28 +0900379 if (!clocksource_mips.read)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 /* No external high precision timer -- use R4k. */
Atsushi Nemoto00598562006-11-12 00:10:28 +0900381 clocksource_mips.read = c0_hpt_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 } else {
383 /* We know counter frequency. Or we can get it. */
Atsushi Nemoto00598562006-11-12 00:10:28 +0900384 if (!clocksource_mips.read) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 /* No external high precision timer -- use R4k. */
Atsushi Nemoto00598562006-11-12 00:10:28 +0900386 clocksource_mips.read = c0_hpt_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Atsushi Nemoto16b7b2a2006-10-24 00:21:27 +0900388 if (!mips_timer_state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 /* No external timer interrupt -- use R4k. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 mips_timer_ack = c0_timer_ack;
Atsushi Nemotoc87b6eb2006-10-28 01:14:37 +0900391 /* Calculate cache parameters. */
392 cycles_per_jiffy =
393 (mips_hpt_frequency + HZ / 2) / HZ;
394 /*
395 * This sets up the high precision
396 * timer for the first interrupt.
397 */
398 c0_hpt_timer_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 }
400 }
401 if (!mips_hpt_frequency)
402 mips_hpt_frequency = calibrate_hpt();
403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 /* Report the high precision timer rate for a reference. */
405 printk("Using %u.%03u MHz high precision timer.\n",
406 ((mips_hpt_frequency + 500) / 1000) / 1000,
407 ((mips_hpt_frequency + 500) / 1000) % 1000);
408 }
409
410 if (!mips_timer_ack)
411 /* No timer interrupt ack (e.g. i8254). */
412 mips_timer_ack = null_timer_ack;
413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 /*
415 * Call board specific timer interrupt setup.
416 *
417 * this pointer must be setup in machine setup routine.
418 *
419 * Even if a machine chooses to use a low-level timer interrupt,
420 * it still needs to setup the timer_irqaction.
421 * In that case, it might be better to set timer_irqaction.handler
422 * to be NULL function so that we are sure the high-level code
423 * is not invoked accidentally.
424 */
Ralf Baechle54d0a212006-07-09 21:38:56 +0100425 plat_timer_setup(&timer_irqaction);
Atsushi Nemoto16b7b2a2006-10-24 00:21:27 +0900426
427 init_mips_clocksource();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428}
429
430#define FEBRUARY 2
431#define STARTOFTIME 1970
432#define SECDAY 86400L
433#define SECYR (SECDAY * 365)
434#define leapyear(y) ((!((y) % 4) && ((y) % 100)) || !((y) % 400))
435#define days_in_year(y) (leapyear(y) ? 366 : 365)
436#define days_in_month(m) (month_days[(m) - 1])
437
438static int month_days[12] = {
439 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
440};
441
442void to_tm(unsigned long tim, struct rtc_time *tm)
443{
444 long hms, day, gday;
445 int i;
446
447 gday = day = tim / SECDAY;
448 hms = tim % SECDAY;
449
450 /* Hours, minutes, seconds are easy */
451 tm->tm_hour = hms / 3600;
452 tm->tm_min = (hms % 3600) / 60;
453 tm->tm_sec = (hms % 3600) % 60;
454
455 /* Number of years in days */
456 for (i = STARTOFTIME; day >= days_in_year(i); i++)
457 day -= days_in_year(i);
458 tm->tm_year = i;
459
460 /* Number of months in days left */
461 if (leapyear(tm->tm_year))
462 days_in_month(FEBRUARY) = 29;
463 for (i = 1; day >= days_in_month(i); i++)
464 day -= days_in_month(i);
465 days_in_month(FEBRUARY) = 28;
466 tm->tm_mon = i - 1; /* tm_mon starts from 0 to 11 */
467
468 /* Days are what is left over (+1) from all that. */
469 tm->tm_mday = day + 1;
470
471 /*
472 * Determine the day of week
473 */
474 tm->tm_wday = (gday + 4) % 7; /* 1970/1/1 was Thursday */
475}
476
477EXPORT_SYMBOL(rtc_lock);
478EXPORT_SYMBOL(to_tm);
Yoichi Yuasad23ee8f2006-03-27 01:16:33 -0800479EXPORT_SYMBOL(rtc_mips_set_time);
480EXPORT_SYMBOL(rtc_mips_get_time);