1 /***************************************************************************/
4 * timers.c -- generic ColdFire hardware timer support.
6 * Copyright (C) 1999-2008, Greg Ungerer <gerg@snapgear.com>
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>
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 * Default the timer and vector to use for ColdFire. Some ColdFire
35 * CPU's and some boards may want different. Their sub-architecture
36 * startup code (in config.c) can change these if they want.
38 unsigned int mcf_timervector
= 29;
39 unsigned int mcf_profilevector
= 31;
40 unsigned int mcf_timerlevel
= 5;
43 * These provide the underlying interrupt vector support.
44 * Unfortunately it is a little different on each ColdFire.
46 extern void mcf_settimericr(int timer
, int level
);
47 void coldfire_profile_init(void);
49 #if defined(CONFIG_M532x)
50 #define __raw_readtrr __raw_readl
51 #define __raw_writetrr __raw_writel
53 #define __raw_readtrr __raw_readw
54 #define __raw_writetrr __raw_writew
57 static u32 mcftmr_cycles_per_jiffy
;
58 static u32 mcftmr_cnt
;
60 /***************************************************************************/
62 static irqreturn_t
mcftmr_tick(int irq
, void *dummy
)
64 /* Reset the ColdFire timer */
65 __raw_writeb(MCFTIMER_TER_CAP
| MCFTIMER_TER_REF
, TA(MCFTIMER_TER
));
67 mcftmr_cnt
+= mcftmr_cycles_per_jiffy
;
68 return arch_timer_interrupt(irq
, dummy
);
71 /***************************************************************************/
73 static struct irqaction mcftmr_timer_irq
= {
75 .flags
= IRQF_DISABLED
| IRQF_TIMER
,
76 .handler
= mcftmr_tick
,
79 /***************************************************************************/
81 static cycle_t
mcftmr_read_clk(void)
87 local_irq_save(flags
);
88 tcn
= __raw_readw(TA(MCFTIMER_TCN
));
90 local_irq_restore(flags
);
95 /***************************************************************************/
97 static struct clocksource mcftmr_clk
= {
100 .read
= mcftmr_read_clk
,
102 .mask
= CLOCKSOURCE_MASK(32),
103 .flags
= CLOCK_SOURCE_IS_CONTINUOUS
,
106 /***************************************************************************/
108 void hw_timer_init(void)
110 setup_irq(mcf_timervector
, &mcftmr_timer_irq
);
112 __raw_writew(MCFTIMER_TMR_DISABLE
, TA(MCFTIMER_TMR
));
113 mcftmr_cycles_per_jiffy
= FREQ
/ HZ
;
114 __raw_writetrr(mcftmr_cycles_per_jiffy
, TA(MCFTIMER_TRR
));
115 __raw_writew(MCFTIMER_TMR_ENORI
| MCFTIMER_TMR_CLK16
|
116 MCFTIMER_TMR_RESTART
| MCFTIMER_TMR_ENABLE
, TA(MCFTIMER_TMR
));
118 mcftmr_clk
.mult
= clocksource_hz2mult(FREQ
, mcftmr_clk
.shift
);
119 clocksource_register(&mcftmr_clk
);
121 mcf_settimericr(1, mcf_timerlevel
);
123 #ifdef CONFIG_HIGHPROFILE
124 coldfire_profile_init();
128 /***************************************************************************/
129 #ifdef CONFIG_HIGHPROFILE
130 /***************************************************************************/
133 * By default use timer2 as the profiler clock timer.
135 #define PA(a) (MCF_MBAR + MCFTIMER_BASE2 + (a))
138 * Choose a reasonably fast profile timer. Make it an odd value to
139 * try and get good coverage of kernel operations.
141 #define PROFILEHZ 1013
144 * Use the other timer to provide high accuracy profiling info.
146 irqreturn_t
coldfire_profile_tick(int irq
, void *dummy
)
148 /* Reset ColdFire timer2 */
149 __raw_writeb(MCFTIMER_TER_CAP
| MCFTIMER_TER_REF
, PA(MCFTIMER_TER
));
151 profile_tick(CPU_PROFILING
);
155 /***************************************************************************/
157 static struct irqaction coldfire_profile_irq
= {
158 .name
= "profile timer",
159 .flags
= IRQF_DISABLED
| IRQF_TIMER
,
160 .handler
= coldfire_profile_tick
,
163 void coldfire_profile_init(void)
165 printk(KERN_INFO
"PROFILE: lodging TIMER2 @ %dHz as profile timer\n",
168 setup_irq(mcf_profilevector
, &coldfire_profile_irq
);
170 /* Set up TIMER 2 as high speed profile clock */
171 __raw_writew(MCFTIMER_TMR_DISABLE
, PA(MCFTIMER_TMR
));
173 __raw_writetrr(((MCF_BUSCLK
/ 16) / PROFILEHZ
), PA(MCFTIMER_TRR
));
174 __raw_writew(MCFTIMER_TMR_ENORI
| MCFTIMER_TMR_CLK16
|
175 MCFTIMER_TMR_RESTART
| MCFTIMER_TMR_ENABLE
, PA(MCFTIMER_TMR
));
177 mcf_settimericr(2, 7);
180 /***************************************************************************/
181 #endif /* CONFIG_HIGHPROFILE */
182 /***************************************************************************/