blob: 5892491b40eb1af7fabcdd6bb13276c58684d404 [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 */
Ralf Baechle7bcf7712007-10-11 23:46:09 +010014#include <linux/clockchips.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/types.h>
16#include <linux/kernel.h>
17#include <linux/init.h>
18#include <linux/sched.h>
19#include <linux/param.h>
Yoichi Yuasab1043cc2007-09-13 13:13:28 +090020#include <linux/profile.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/time.h>
22#include <linux/timex.h>
23#include <linux/smp.h>
24#include <linux/kernel_stat.h>
25#include <linux/spinlock.h>
26#include <linux/interrupt.h>
27#include <linux/module.h>
Ralf Baechleea580402007-10-11 23:46:09 +010028#include <linux/kallsyms.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30#include <asm/bootinfo.h>
Ralf Baechleec74e362005-07-13 11:48:45 +000031#include <asm/cache.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <asm/compiler.h>
33#include <asm/cpu.h>
34#include <asm/cpu-features.h>
35#include <asm/div64.h>
36#include <asm/sections.h>
Ralf Baechleea580402007-10-11 23:46:09 +010037#include <asm/smtc_ipi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/time.h>
39
Ralf Baechle7bcf7712007-10-11 23:46:09 +010040#include <irq.h>
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042/*
43 * The integer part of the number of usecs per jiffy is taken from tick,
44 * but the fractional part is not recorded, so we calculate it using the
45 * initial value of HZ. This aids systems where tick isn't really an
46 * integer (e.g. for HZ = 128).
47 */
48#define USECS_PER_JIFFY TICK_SIZE
49#define USECS_PER_JIFFY_FRAC ((unsigned long)(u32)((1000000ULL << 32) / HZ))
50
51#define TICK_SIZE (tick_nsec / 1000)
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053/*
54 * forward reference
55 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056DEFINE_SPINLOCK(rtc_lock);
Ralf Baechle4b550482007-10-11 23:46:08 +010057EXPORT_SYMBOL(rtc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Ralf Baechle4b550482007-10-11 23:46:08 +010059int __weak rtc_mips_set_time(unsigned long sec)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
61 return 0;
62}
Ralf Baechle4b550482007-10-11 23:46:08 +010063EXPORT_SYMBOL(rtc_mips_set_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Ralf Baechle4b550482007-10-11 23:46:08 +010065int __weak rtc_mips_set_mmss(unsigned long nowtime)
66{
67 return rtc_mips_set_time(nowtime);
68}
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Ralf Baechlef5ff0a22007-08-13 15:26:12 +010070int update_persistent_clock(struct timespec now)
71{
72 return rtc_mips_set_mmss(now.tv_sec);
73}
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Linus Torvalds1da177e2005-04-16 15:20:36 -070075/* how many counter cycles in a jiffy */
Ralf Baechleec74e362005-07-13 11:48:45 +000076static unsigned long cycles_per_jiffy __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Linus Torvalds1da177e2005-04-16 15:20:36 -070078/*
79 * Null timer ack for systems not needing one (e.g. i8254).
80 */
81static void null_timer_ack(void) { /* nothing */ }
82
83/*
84 * Null high precision timer functions for systems lacking one.
85 */
Atsushi Nemoto00598562006-11-12 00:10:28 +090086static cycle_t null_hpt_read(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
88 return 0;
89}
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091/*
92 * Timer ack for an R4k-compatible timer of a known frequency.
93 */
94static void c0_timer_ack(void)
95{
Ralf Baechle7bcf7712007-10-11 23:46:09 +010096 write_c0_compare(read_c0_compare());
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
98
99/*
100 * High precision timer functions for a R4k-compatible timer.
101 */
Atsushi Nemoto00598562006-11-12 00:10:28 +0900102static cycle_t c0_hpt_read(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
104 return read_c0_count();
105}
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107int (*mips_timer_state)(void);
108void (*mips_timer_ack)(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110/*
111 * local_timer_interrupt() does profiling and process accounting
112 * on a per-CPU basis.
113 *
114 * In UP mode, it is invoked from the (global) timer_interrupt.
115 *
116 * In SMP mode, it might invoked by per-CPU timer interrupt, or
117 * a broadcasted inter-processor interrupt which itself is triggered
118 * by the global timer interrupt.
119 */
David Howells7d12e782006-10-05 14:55:46 +0100120void local_timer_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
Ralf Baechle937a8012006-10-07 19:44:33 +0100122 profile_tick(CPU_PROFILING);
David Howells7d12e782006-10-05 14:55:46 +0100123 update_process_times(user_mode(get_irq_regs()));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
125
David Howells7d12e782006-10-05 14:55:46 +0100126int null_perf_irq(void)
Ralf Baechleba339c02005-12-09 12:29:38 +0000127{
128 return 0;
129}
130
Ralf Baechle91a2fcc2007-10-11 23:46:09 +0100131EXPORT_SYMBOL(null_perf_irq);
132
David Howells7d12e782006-10-05 14:55:46 +0100133int (*perf_irq)(void) = null_perf_irq;
Ralf Baechleba339c02005-12-09 12:29:38 +0000134
Ralf Baechleba339c02005-12-09 12:29:38 +0000135EXPORT_SYMBOL(perf_irq);
136
Chris Dearmanffe9ee42007-05-24 22:24:20 +0100137/*
Ralf Baechle3b1d4ed2007-06-20 22:27:10 +0100138 * Timer interrupt
139 */
140int cp0_compare_irq;
141
142/*
Chris Dearmanffe9ee42007-05-24 22:24:20 +0100143 * Performance counter IRQ or -1 if shared with timer
144 */
Ralf Baechle3b1d4ed2007-06-20 22:27:10 +0100145int cp0_perfcount_irq;
146EXPORT_SYMBOL_GPL(cp0_perfcount_irq);
Chris Dearmanffe9ee42007-05-24 22:24:20 +0100147
148/*
149 * Possibly handle a performance counter interrupt.
150 * Return true if the timer interrupt should not be checked
151 */
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100152static inline int handle_perf_irq(int r2)
Chris Dearmanffe9ee42007-05-24 22:24:20 +0100153{
154 /*
155 * The performance counter overflow interrupt may be shared with the
Ralf Baechle3b1d4ed2007-06-20 22:27:10 +0100156 * timer interrupt (cp0_perfcount_irq < 0). If it is and a
Chris Dearmanffe9ee42007-05-24 22:24:20 +0100157 * performance counter has overflowed (perf_irq() == IRQ_HANDLED)
158 * and we can't reliably determine if a counter interrupt has also
159 * happened (!r2) then don't check for a timer interrupt.
160 */
Ralf Baechle3b1d4ed2007-06-20 22:27:10 +0100161 return (cp0_perfcount_irq < 0) &&
Chris Dearmanffe9ee42007-05-24 22:24:20 +0100162 perf_irq() == IRQ_HANDLED &&
163 !r2;
164}
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166/*
167 * time_init() - it does the following things.
168 *
Ralf Baechle4b550482007-10-11 23:46:08 +0100169 * 1) plat_time_init() -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 * a) (optional) set up RTC routines,
171 * b) (optional) calibrate and set the mips_hpt_frequency
Atsushi Nemoto16b7b2a2006-10-24 00:21:27 +0900172 * (only needed if you intended to use cpu counter as timer interrupt
173 * source)
Ralf Baechle4b550482007-10-11 23:46:08 +0100174 * 2) calculate a couple of cached variables for later usage
175 * 3) plat_timer_setup() -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 * a) (optional) over-write any choices made above by time_init().
177 * b) machine specific code should setup the timer irqaction.
178 * c) enable the timer interrupt
179 */
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181unsigned int mips_hpt_frequency;
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183static unsigned int __init calibrate_hpt(void)
184{
Atsushi Nemoto00598562006-11-12 00:10:28 +0900185 cycle_t frequency, hpt_start, hpt_end, hpt_count, hz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 const int loops = HZ / 10;
188 int log_2_loops = 0;
189 int i;
190
191 /*
192 * We want to calibrate for 0.1s, but to avoid a 64-bit
193 * division we round the number of loops up to the nearest
194 * power of 2.
195 */
196 while (loops > 1 << log_2_loops)
197 log_2_loops++;
198 i = 1 << log_2_loops;
199
200 /*
201 * Wait for a rising edge of the timer interrupt.
202 */
203 while (mips_timer_state());
204 while (!mips_timer_state());
205
206 /*
207 * Now see how many high precision timer ticks happen
208 * during the calculated number of periods between timer
209 * interrupts.
210 */
Atsushi Nemoto00598562006-11-12 00:10:28 +0900211 hpt_start = clocksource_mips.read();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 do {
213 while (mips_timer_state());
214 while (!mips_timer_state());
215 } while (--i);
Atsushi Nemoto00598562006-11-12 00:10:28 +0900216 hpt_end = clocksource_mips.read();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Atsushi Nemoto00598562006-11-12 00:10:28 +0900218 hpt_count = (hpt_end - hpt_start) & clocksource_mips.mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 hz = HZ;
Atsushi Nemoto00598562006-11-12 00:10:28 +0900220 frequency = hpt_count * hz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 return frequency >> log_2_loops;
223}
224
Atsushi Nemoto00598562006-11-12 00:10:28 +0900225struct clocksource clocksource_mips = {
Atsushi Nemoto16b7b2a2006-10-24 00:21:27 +0900226 .name = "MIPS",
Franck Bui-Huu55d0b4e2007-05-04 17:36:44 +0200227 .mask = CLOCKSOURCE_MASK(32),
Thomas Gleixner877fe382007-02-16 01:27:40 -0800228 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
Atsushi Nemoto16b7b2a2006-10-24 00:21:27 +0900229};
230
Ralf Baechle7bcf7712007-10-11 23:46:09 +0100231static int mips_next_event(unsigned long delta,
232 struct clock_event_device *evt)
233{
234 unsigned int cnt;
Ralf Baechleea580402007-10-11 23:46:09 +0100235 int res;
Ralf Baechle7bcf7712007-10-11 23:46:09 +0100236
Ralf Baechleea580402007-10-11 23:46:09 +0100237#ifdef CONFIG_MIPS_MT_SMTC
238 {
239 unsigned long flags, vpflags;
240 local_irq_save(flags);
241 vpflags = dvpe();
242#endif
Ralf Baechle7bcf7712007-10-11 23:46:09 +0100243 cnt = read_c0_count();
244 cnt += delta;
245 write_c0_compare(cnt);
Ralf Baechleea580402007-10-11 23:46:09 +0100246 res = ((long)(read_c0_count() - cnt ) > 0) ? -ETIME : 0;
247#ifdef CONFIG_MIPS_MT_SMTC
248 evpe(vpflags);
249 local_irq_restore(flags);
250 }
251#endif
252 return res;
Ralf Baechle7bcf7712007-10-11 23:46:09 +0100253}
254
255static void mips_set_mode(enum clock_event_mode mode,
256 struct clock_event_device *evt)
257{
258 /* Nothing to do ... */
259}
260
Ralf Baechleea580402007-10-11 23:46:09 +0100261static DEFINE_PER_CPU(struct clock_event_device, mips_clockevent_device);
Ralf Baechle7bcf7712007-10-11 23:46:09 +0100262static int cp0_timer_irq_installed;
263
264static irqreturn_t timer_interrupt(int irq, void *dev_id)
265{
266 const int r2 = cpu_has_mips_r2;
267 struct clock_event_device *cd;
268 int cpu = smp_processor_id();
269
270 /*
271 * Suckage alert:
272 * Before R2 of the architecture there was no way to see if a
273 * performance counter interrupt was pending, so we have to run
274 * the performance counter interrupt handler anyway.
275 */
276 if (handle_perf_irq(r2))
277 goto out;
278
279 /*
280 * The same applies to performance counter interrupts. But with the
281 * above we now know that the reason we got here must be a timer
282 * interrupt. Being the paranoiacs we are we check anyway.
283 */
284 if (!r2 || (read_c0_cause() & (1 << 30))) {
285 c0_timer_ack();
Ralf Baechleea580402007-10-11 23:46:09 +0100286#ifdef CONFIG_MIPS_MT_SMTC
287 if (cpu_data[cpu].vpe_id)
288 goto out;
289 cpu = 0;
290#endif
291 cd = &per_cpu(mips_clockevent_device, cpu);
Ralf Baechle7bcf7712007-10-11 23:46:09 +0100292 cd->event_handler(cd);
293 }
294
295out:
296 return IRQ_HANDLED;
297}
298
299static struct irqaction timer_irqaction = {
300 .handler = timer_interrupt,
Ralf Baechleea580402007-10-11 23:46:09 +0100301#ifdef CONFIG_MIPS_MT_SMTC
302 .flags = IRQF_DISABLED,
303#else
Ralf Baechle7bcf7712007-10-11 23:46:09 +0100304 .flags = IRQF_DISABLED | IRQF_PERCPU,
Ralf Baechleea580402007-10-11 23:46:09 +0100305#endif
Ralf Baechle7bcf7712007-10-11 23:46:09 +0100306 .name = "timer",
307};
308
Atsushi Nemoto16b7b2a2006-10-24 00:21:27 +0900309static void __init init_mips_clocksource(void)
310{
311 u64 temp;
312 u32 shift;
313
Atsushi Nemoto00598562006-11-12 00:10:28 +0900314 if (!mips_hpt_frequency || clocksource_mips.read == null_hpt_read)
Atsushi Nemoto16b7b2a2006-10-24 00:21:27 +0900315 return;
316
317 /* Calclate a somewhat reasonable rating value */
318 clocksource_mips.rating = 200 + mips_hpt_frequency / 10000000;
319 /* Find a shift value */
320 for (shift = 32; shift > 0; shift--) {
321 temp = (u64) NSEC_PER_SEC << shift;
322 do_div(temp, mips_hpt_frequency);
323 if ((temp >> 32) == 0)
324 break;
325 }
326 clocksource_mips.shift = shift;
327 clocksource_mips.mult = (u32)temp;
Atsushi Nemoto16b7b2a2006-10-24 00:21:27 +0900328
329 clocksource_register(&clocksource_mips);
330}
331
Ralf Baechle4b550482007-10-11 23:46:08 +0100332void __init __weak plat_time_init(void)
333{
334}
335
Ralf Baechle7bcf7712007-10-11 23:46:09 +0100336void __init __weak plat_timer_setup(struct irqaction *irq)
337{
338}
339
Ralf Baechleea580402007-10-11 23:46:09 +0100340#ifdef CONFIG_MIPS_MT_SMTC
341DEFINE_PER_CPU(struct clock_event_device, smtc_dummy_clockevent_device);
342
343static void smtc_set_mode(enum clock_event_mode mode,
344 struct clock_event_device *evt)
345{
346}
347
348int dummycnt[NR_CPUS];
349
350static void mips_broadcast(cpumask_t mask)
351{
352 unsigned int cpu;
353
354 for_each_cpu_mask(cpu, mask)
355 smtc_send_ipi(cpu, SMTC_CLOCK_TICK, 0);
356}
357
358static void setup_smtc_dummy_clockevent_device(void)
359{
360 //uint64_t mips_freq = mips_hpt_^frequency;
361 unsigned int cpu = smp_processor_id();
362 struct clock_event_device *cd;
363
364 cd = &per_cpu(smtc_dummy_clockevent_device, cpu);
365
366 cd->name = "SMTC";
367 cd->features = CLOCK_EVT_FEAT_DUMMY;
368
369 /* Calculate the min / max delta */
370 cd->mult = 0; //div_sc((unsigned long) mips_freq, NSEC_PER_SEC, 32);
371 cd->shift = 0; //32;
372 cd->max_delta_ns = 0; //clockevent_delta2ns(0x7fffffff, cd);
373 cd->min_delta_ns = 0; //clockevent_delta2ns(0x30, cd);
374
375 cd->rating = 200;
376 cd->irq = 17; //-1;
377// if (cpu)
378// cd->cpumask = CPU_MASK_ALL; // cpumask_of_cpu(cpu);
379// else
380 cd->cpumask = cpumask_of_cpu(cpu);
381
382 cd->set_mode = smtc_set_mode;
383
384 cd->broadcast = mips_broadcast;
385
386 clockevents_register_device(cd);
387}
388#endif
389
390static void mips_event_handler(struct clock_event_device *dev)
391{
392}
393
Ralf Baechle7bcf7712007-10-11 23:46:09 +0100394void __cpuinit mips_clockevent_init(void)
395{
396 uint64_t mips_freq = mips_hpt_frequency;
397 unsigned int cpu = smp_processor_id();
398 struct clock_event_device *cd;
399 unsigned int irq = MIPS_CPU_IRQ_BASE + 7;
400
401 if (!cpu_has_counter)
402 return;
403
Ralf Baechleea580402007-10-11 23:46:09 +0100404#ifdef CONFIG_MIPS_MT_SMTC
405 setup_smtc_dummy_clockevent_device();
406
407 /*
408 * On SMTC we only register VPE0's compare interrupt as clockevent
409 * device.
410 */
411 if (cpu)
412 return;
413#endif
414
415 cd = &per_cpu(mips_clockevent_device, cpu);
Ralf Baechle7bcf7712007-10-11 23:46:09 +0100416
417 cd->name = "MIPS";
418 cd->features = CLOCK_EVT_FEAT_ONESHOT;
419
420 /* Calculate the min / max delta */
421 cd->mult = div_sc((unsigned long) mips_freq, NSEC_PER_SEC, 32);
422 cd->shift = 32;
423 cd->max_delta_ns = clockevent_delta2ns(0x7fffffff, cd);
424 cd->min_delta_ns = clockevent_delta2ns(0x30, cd);
425
426 cd->rating = 300;
427 cd->irq = irq;
Ralf Baechleea580402007-10-11 23:46:09 +0100428#ifdef CONFIG_MIPS_MT_SMTC
429 cd->cpumask = CPU_MASK_ALL;
430#else
Ralf Baechle7bcf7712007-10-11 23:46:09 +0100431 cd->cpumask = cpumask_of_cpu(cpu);
Ralf Baechleea580402007-10-11 23:46:09 +0100432#endif
Ralf Baechle7bcf7712007-10-11 23:46:09 +0100433 cd->set_next_event = mips_next_event;
434 cd->set_mode = mips_set_mode;
Ralf Baechleea580402007-10-11 23:46:09 +0100435 cd->event_handler = mips_event_handler;
Ralf Baechle7bcf7712007-10-11 23:46:09 +0100436
Ralf Baechle7bcf7712007-10-11 23:46:09 +0100437 clockevents_register_device(cd);
438
439 if (!cp0_timer_irq_installed) {
440#ifdef CONFIG_MIPS_MT_SMTC
441#define CPUCTR_IMASKBIT (0x100 << cp0_compare_irq)
442 setup_irq_smtc(irq, &timer_irqaction, CPUCTR_IMASKBIT);
443#else
444 setup_irq(irq, &timer_irqaction);
445#endif /* CONFIG_MIPS_MT_SMTC */
446 cp0_timer_irq_installed = 1;
447 }
448}
449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450void __init time_init(void)
451{
Ralf Baechle4b550482007-10-11 23:46:08 +0100452 plat_time_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454 /* Choose appropriate high precision timer routines. */
Atsushi Nemoto00598562006-11-12 00:10:28 +0900455 if (!cpu_has_counter && !clocksource_mips.read)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 /* No high precision timer -- sorry. */
Atsushi Nemoto00598562006-11-12 00:10:28 +0900457 clocksource_mips.read = null_hpt_read;
Atsushi Nemoto16b7b2a2006-10-24 00:21:27 +0900458 else if (!mips_hpt_frequency && !mips_timer_state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 /* A high precision timer of unknown frequency. */
Atsushi Nemoto00598562006-11-12 00:10:28 +0900460 if (!clocksource_mips.read)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 /* No external high precision timer -- use R4k. */
Atsushi Nemoto00598562006-11-12 00:10:28 +0900462 clocksource_mips.read = c0_hpt_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 } else {
464 /* We know counter frequency. Or we can get it. */
Atsushi Nemoto00598562006-11-12 00:10:28 +0900465 if (!clocksource_mips.read) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 /* No external high precision timer -- use R4k. */
Atsushi Nemoto00598562006-11-12 00:10:28 +0900467 clocksource_mips.read = c0_hpt_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Atsushi Nemoto16b7b2a2006-10-24 00:21:27 +0900469 if (!mips_timer_state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 /* No external timer interrupt -- use R4k. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 mips_timer_ack = c0_timer_ack;
Atsushi Nemotoc87b6eb2006-10-28 01:14:37 +0900472 /* Calculate cache parameters. */
473 cycles_per_jiffy =
474 (mips_hpt_frequency + HZ / 2) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
476 }
477 if (!mips_hpt_frequency)
478 mips_hpt_frequency = calibrate_hpt();
479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 /* Report the high precision timer rate for a reference. */
481 printk("Using %u.%03u MHz high precision timer.\n",
482 ((mips_hpt_frequency + 500) / 1000) / 1000,
483 ((mips_hpt_frequency + 500) / 1000) % 1000);
Ralf Baechle7bcf7712007-10-11 23:46:09 +0100484
485#ifdef CONFIG_IRQ_CPU
486 setup_irq(MIPS_CPU_IRQ_BASE + 7, &timer_irqaction);
487#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 }
489
490 if (!mips_timer_ack)
491 /* No timer interrupt ack (e.g. i8254). */
492 mips_timer_ack = null_timer_ack;
493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 /*
495 * Call board specific timer interrupt setup.
496 *
497 * this pointer must be setup in machine setup routine.
498 *
499 * Even if a machine chooses to use a low-level timer interrupt,
500 * it still needs to setup the timer_irqaction.
501 * In that case, it might be better to set timer_irqaction.handler
502 * to be NULL function so that we are sure the high-level code
503 * is not invoked accidentally.
504 */
Ralf Baechle54d0a212006-07-09 21:38:56 +0100505 plat_timer_setup(&timer_irqaction);
Atsushi Nemoto16b7b2a2006-10-24 00:21:27 +0900506
507 init_mips_clocksource();
Ralf Baechle7bcf7712007-10-11 23:46:09 +0100508 mips_clockevent_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}