m68knommu: simplify ColdFire "timers" clock initialization
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / m68knommu / platform / coldfire / timers.c
blob77b0c17ce6ba3b1e32774a9e70ce97b93cee200f
1 /***************************************************************************/
3 /*
4 * timers.c -- generic ColdFire hardware timer support.
6 * Copyright (C) 1999-2008, Greg Ungerer <gerg@snapgear.com>
7 */
9 /***************************************************************************/
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/sched.h>
14 #include <linux/interrupt.h>
15 #include <linux/irq.h>
16 #include <linux/profile.h>
17 #include <linux/clocksource.h>
18 #include <asm/io.h>
19 #include <asm/traps.h>
20 #include <asm/machdep.h>
21 #include <asm/coldfire.h>
22 #include <asm/mcftimer.h>
23 #include <asm/mcfsim.h>
25 /***************************************************************************/
28 * By default use timer1 as the system clock timer.
30 #define FREQ (MCF_BUSCLK / 16)
31 #define TA(a) (MCF_MBAR + MCFTIMER_BASE1 + (a))
34 * These provide the underlying interrupt vector support.
35 * Unfortunately it is a little different on each ColdFire.
37 extern void mcf_settimericr(int timer, int level);
38 void coldfire_profile_init(void);
40 #if defined(CONFIG_M532x)
41 #define __raw_readtrr __raw_readl
42 #define __raw_writetrr __raw_writel
43 #else
44 #define __raw_readtrr __raw_readw
45 #define __raw_writetrr __raw_writew
46 #endif
48 static u32 mcftmr_cycles_per_jiffy;
49 static u32 mcftmr_cnt;
51 /***************************************************************************/
53 static irqreturn_t mcftmr_tick(int irq, void *dummy)
55 /* Reset the ColdFire timer */
56 __raw_writeb(MCFTIMER_TER_CAP | MCFTIMER_TER_REF, TA(MCFTIMER_TER));
58 mcftmr_cnt += mcftmr_cycles_per_jiffy;
59 return arch_timer_interrupt(irq, dummy);
62 /***************************************************************************/
64 static struct irqaction mcftmr_timer_irq = {
65 .name = "timer",
66 .flags = IRQF_DISABLED | IRQF_TIMER,
67 .handler = mcftmr_tick,
70 /***************************************************************************/
72 static cycle_t mcftmr_read_clk(struct clocksource *cs)
74 unsigned long flags;
75 u32 cycles;
76 u16 tcn;
78 local_irq_save(flags);
79 tcn = __raw_readw(TA(MCFTIMER_TCN));
80 cycles = mcftmr_cnt;
81 local_irq_restore(flags);
83 return cycles + tcn;
86 /***************************************************************************/
88 static struct clocksource mcftmr_clk = {
89 .name = "tmr",
90 .rating = 250,
91 .read = mcftmr_read_clk,
92 .shift = 20,
93 .mask = CLOCKSOURCE_MASK(32),
94 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
97 /***************************************************************************/
99 void hw_timer_init(void)
101 setup_irq(MCF_IRQ_TIMER, &mcftmr_timer_irq);
103 __raw_writew(MCFTIMER_TMR_DISABLE, TA(MCFTIMER_TMR));
104 mcftmr_cycles_per_jiffy = FREQ / HZ;
106 * The coldfire timer runs from 0 to TRR included, then 0
107 * again and so on. It counts thus actually TRR + 1 steps
108 * for 1 tick, not TRR. So if you want n cycles,
109 * initialize TRR with n - 1.
111 __raw_writetrr(mcftmr_cycles_per_jiffy - 1, TA(MCFTIMER_TRR));
112 __raw_writew(MCFTIMER_TMR_ENORI | MCFTIMER_TMR_CLK16 |
113 MCFTIMER_TMR_RESTART | MCFTIMER_TMR_ENABLE, TA(MCFTIMER_TMR));
115 mcftmr_clk.mult = clocksource_hz2mult(FREQ, mcftmr_clk.shift);
116 clocksource_register(&mcftmr_clk);
118 mcf_clrimr(MCFINTC_TIMER1);
120 #ifdef CONFIG_HIGHPROFILE
121 coldfire_profile_init();
122 #endif
125 /***************************************************************************/
126 #ifdef CONFIG_HIGHPROFILE
127 /***************************************************************************/
130 * By default use timer2 as the profiler clock timer.
132 #define PA(a) (MCF_MBAR + MCFTIMER_BASE2 + (a))
135 * Choose a reasonably fast profile timer. Make it an odd value to
136 * try and get good coverage of kernel operations.
138 #define PROFILEHZ 1013
141 * Use the other timer to provide high accuracy profiling info.
143 irqreturn_t coldfire_profile_tick(int irq, void *dummy)
145 /* Reset ColdFire timer2 */
146 __raw_writeb(MCFTIMER_TER_CAP | MCFTIMER_TER_REF, PA(MCFTIMER_TER));
147 if (current->pid)
148 profile_tick(CPU_PROFILING);
149 return IRQ_HANDLED;
152 /***************************************************************************/
154 static struct irqaction coldfire_profile_irq = {
155 .name = "profile timer",
156 .flags = IRQF_DISABLED | IRQF_TIMER,
157 .handler = coldfire_profile_tick,
160 void coldfire_profile_init(void)
162 printk(KERN_INFO "PROFILE: lodging TIMER2 @ %dHz as profile timer\n",
163 PROFILEHZ);
165 setup_irq(MCF_IRQ_PROFILER, &coldfire_profile_irq);
167 /* Set up TIMER 2 as high speed profile clock */
168 __raw_writew(MCFTIMER_TMR_DISABLE, PA(MCFTIMER_TMR));
170 __raw_writetrr(((MCF_BUSCLK / 16) / PROFILEHZ), PA(MCFTIMER_TRR));
171 __raw_writew(MCFTIMER_TMR_ENORI | MCFTIMER_TMR_CLK16 |
172 MCFTIMER_TMR_RESTART | MCFTIMER_TMR_ENABLE, PA(MCFTIMER_TMR));
174 mcf_clrimr(MCFINTC_TIMER2);
177 /***************************************************************************/
178 #endif /* CONFIG_HIGHPROFILE */
179 /***************************************************************************/