RT-AC56 3.0.0.4.374.37 core
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / xtensa / kernel / time.c
blob19df764f6399ae4fd4201379301cef1c78364bee
1 /*
2 * arch/xtensa/kernel/time.c
4 * Timer and clock support.
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
8 * for more details.
10 * Copyright (C) 2005 Tensilica Inc.
12 * Chris Zankel <chris@zankel.net>
15 #include <linux/errno.h>
16 #include <linux/sched.h>
17 #include <linux/time.h>
18 #include <linux/clocksource.h>
19 #include <linux/interrupt.h>
20 #include <linux/module.h>
21 #include <linux/init.h>
22 #include <linux/irq.h>
23 #include <linux/profile.h>
24 #include <linux/delay.h>
26 #include <asm/timex.h>
27 #include <asm/platform.h>
29 #ifdef CONFIG_XTENSA_CALIBRATE_CCOUNT
30 unsigned long ccount_per_jiffy; /* per 1/HZ */
31 unsigned long nsec_per_ccount; /* nsec per ccount increment */
32 #endif
34 static cycle_t ccount_read(void)
36 return (cycle_t)get_ccount();
39 static struct clocksource ccount_clocksource = {
40 .name = "ccount",
41 .rating = 200,
42 .read = ccount_read,
43 .mask = CLOCKSOURCE_MASK(32),
45 * With a shift of 22 the lower limit of the cpu clock is
46 * 1MHz, where NSEC_PER_CCOUNT is 1000 or a bit less than
47 * 2^10: Since we have 32 bits and the multiplicator can
48 * already take up as much as 10 bits, this leaves us with
49 * remaining upper 22 bits.
51 .shift = 22,
54 static irqreturn_t timer_interrupt(int irq, void *dev_id);
55 static struct irqaction timer_irqaction = {
56 .handler = timer_interrupt,
57 .flags = IRQF_DISABLED,
58 .name = "timer",
61 void __init time_init(void)
63 #ifdef CONFIG_XTENSA_CALIBRATE_CCOUNT
64 printk("Calibrating CPU frequency ");
65 platform_calibrate_ccount();
66 printk("%d.%02d MHz\n", (int)ccount_per_jiffy/(1000000/HZ),
67 (int)(ccount_per_jiffy/(10000/HZ))%100);
68 #endif
69 ccount_clocksource.mult =
70 clocksource_hz2mult(CCOUNT_PER_JIFFY * HZ,
71 ccount_clocksource.shift);
72 clocksource_register(&ccount_clocksource);
74 /* Initialize the linux timer interrupt. */
76 setup_irq(LINUX_TIMER_INT, &timer_irqaction);
77 set_linux_timer(get_ccount() + CCOUNT_PER_JIFFY);
81 * The timer interrupt is called HZ times per second.
84 irqreturn_t timer_interrupt (int irq, void *dev_id)
87 unsigned long next;
89 next = get_linux_timer();
91 again:
92 while ((signed long)(get_ccount() - next) > 0) {
94 profile_tick(CPU_PROFILING);
95 #ifndef CONFIG_SMP
96 update_process_times(user_mode(get_irq_regs()));
97 #endif
99 write_seqlock(&xtime_lock);
101 do_timer(1); /* Linux handler in kernel/timer.c */
103 /* Note that writing CCOMPARE clears the interrupt. */
105 next += CCOUNT_PER_JIFFY;
106 set_linux_timer(next);
108 write_sequnlock(&xtime_lock);
111 /* Allow platform to do something useful (Wdog). */
113 platform_heartbeat();
115 /* Make sure we didn't miss any tick... */
117 if ((signed long)(get_ccount() - next) > 0)
118 goto again;
120 return IRQ_HANDLED;
123 #ifndef CONFIG_GENERIC_CALIBRATE_DELAY
124 void __cpuinit calibrate_delay(void)
126 loops_per_jiffy = CCOUNT_PER_JIFFY;
127 printk("Calibrating delay loop (skipped)... "
128 "%lu.%02lu BogoMIPS preset\n",
129 loops_per_jiffy/(1000000/HZ),
130 (loops_per_jiffy/(10000/HZ)) % 100);
132 #endif