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) (MCFTIMER_BASE1 + (a))
34 * These provide the underlying interrupt vector support.
35 * Unfortunately it is a little different on each ColdFire.
37 void coldfire_profile_init(void);
39 #if defined(CONFIG_M532x)
40 #define __raw_readtrr __raw_readl
41 #define __raw_writetrr __raw_writel
43 #define __raw_readtrr __raw_readw
44 #define __raw_writetrr __raw_writew
47 static u32 mcftmr_cycles_per_jiffy
;
48 static u32 mcftmr_cnt
;
50 /***************************************************************************/
52 static irqreturn_t
mcftmr_tick(int irq
, void *dummy
)
54 /* Reset the ColdFire timer */
55 __raw_writeb(MCFTIMER_TER_CAP
| MCFTIMER_TER_REF
, TA(MCFTIMER_TER
));
57 mcftmr_cnt
+= mcftmr_cycles_per_jiffy
;
58 return arch_timer_interrupt(irq
, dummy
);
61 /***************************************************************************/
63 static struct irqaction mcftmr_timer_irq
= {
65 .flags
= IRQF_DISABLED
| IRQF_TIMER
,
66 .handler
= mcftmr_tick
,
69 /***************************************************************************/
71 static cycle_t
mcftmr_read_clk(struct clocksource
*cs
)
77 local_irq_save(flags
);
78 tcn
= __raw_readw(TA(MCFTIMER_TCN
));
80 local_irq_restore(flags
);
85 /***************************************************************************/
87 static struct clocksource mcftmr_clk
= {
90 .read
= mcftmr_read_clk
,
91 .mask
= CLOCKSOURCE_MASK(32),
92 .flags
= CLOCK_SOURCE_IS_CONTINUOUS
,
95 /***************************************************************************/
97 void hw_timer_init(void)
99 __raw_writew(MCFTIMER_TMR_DISABLE
, TA(MCFTIMER_TMR
));
100 mcftmr_cycles_per_jiffy
= FREQ
/ HZ
;
102 * The coldfire timer runs from 0 to TRR included, then 0
103 * again and so on. It counts thus actually TRR + 1 steps
104 * for 1 tick, not TRR. So if you want n cycles,
105 * initialize TRR with n - 1.
107 __raw_writetrr(mcftmr_cycles_per_jiffy
- 1, TA(MCFTIMER_TRR
));
108 __raw_writew(MCFTIMER_TMR_ENORI
| MCFTIMER_TMR_CLK16
|
109 MCFTIMER_TMR_RESTART
| MCFTIMER_TMR_ENABLE
, TA(MCFTIMER_TMR
));
111 clocksource_register_hz(&mcftmr_clk
, FREQ
);
113 setup_irq(MCF_IRQ_TIMER
, &mcftmr_timer_irq
);
115 #ifdef CONFIG_HIGHPROFILE
116 coldfire_profile_init();
120 /***************************************************************************/
121 #ifdef CONFIG_HIGHPROFILE
122 /***************************************************************************/
125 * By default use timer2 as the profiler clock timer.
127 #define PA(a) (MCFTIMER_BASE2 + (a))
130 * Choose a reasonably fast profile timer. Make it an odd value to
131 * try and get good coverage of kernel operations.
133 #define PROFILEHZ 1013
136 * Use the other timer to provide high accuracy profiling info.
138 irqreturn_t
coldfire_profile_tick(int irq
, void *dummy
)
140 /* Reset ColdFire timer2 */
141 __raw_writeb(MCFTIMER_TER_CAP
| MCFTIMER_TER_REF
, PA(MCFTIMER_TER
));
143 profile_tick(CPU_PROFILING
);
147 /***************************************************************************/
149 static struct irqaction coldfire_profile_irq
= {
150 .name
= "profile timer",
151 .flags
= IRQF_DISABLED
| IRQF_TIMER
,
152 .handler
= coldfire_profile_tick
,
155 void coldfire_profile_init(void)
157 printk(KERN_INFO
"PROFILE: lodging TIMER2 @ %dHz as profile timer\n",
160 /* Set up TIMER 2 as high speed profile clock */
161 __raw_writew(MCFTIMER_TMR_DISABLE
, PA(MCFTIMER_TMR
));
163 __raw_writetrr(((MCF_BUSCLK
/ 16) / PROFILEHZ
), PA(MCFTIMER_TRR
));
164 __raw_writew(MCFTIMER_TMR_ENORI
| MCFTIMER_TMR_CLK16
|
165 MCFTIMER_TMR_RESTART
| MCFTIMER_TMR_ENABLE
, PA(MCFTIMER_TMR
));
167 setup_irq(MCF_IRQ_PROFILER
, &coldfire_profile_irq
);
170 /***************************************************************************/
171 #endif /* CONFIG_HIGHPROFILE */
172 /***************************************************************************/