timers.c 4.7 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5
/***************************************************************************/

/*
 *	timers.c -- generic ColdFire hardware timer support.
 *
6
 *	Copyright (C) 1999-2008, Greg Ungerer <gerg@snapgear.com>
L
Linus Torvalds 已提交
7 8 9 10 11
 */

/***************************************************************************/

#include <linux/kernel.h>
12
#include <linux/init.h>
L
Linus Torvalds 已提交
13 14
#include <linux/sched.h>
#include <linux/interrupt.h>
15
#include <linux/irq.h>
16 17
#include <linux/profile.h>
#include <linux/clocksource.h>
18
#include <asm/io.h>
L
Linus Torvalds 已提交
19 20 21 22 23 24 25 26
#include <asm/traps.h>
#include <asm/machdep.h>
#include <asm/coldfire.h>
#include <asm/mcftimer.h>
#include <asm/mcfsim.h>

/***************************************************************************/

27 28 29
/*
 *	By default use timer1 as the system clock timer.
 */
30
#define	FREQ	(MCF_BUSCLK / 16)
31
#define	TA(a)	(MCFTIMER_BASE1 + (a))
32

L
Linus Torvalds 已提交
33 34 35 36
/*
 *	These provide the underlying interrupt vector support.
 *	Unfortunately it is a little different on each ColdFire.
 */
37
void coldfire_profile_init(void);
L
Linus Torvalds 已提交
38

39 40 41 42 43 44 45 46
#if defined(CONFIG_M532x)
#define	__raw_readtrr	__raw_readl
#define	__raw_writetrr	__raw_writel
#else
#define	__raw_readtrr	__raw_readw
#define	__raw_writetrr	__raw_writew
#endif

47 48 49
static u32 mcftmr_cycles_per_jiffy;
static u32 mcftmr_cnt;

L
Linus Torvalds 已提交
50 51
/***************************************************************************/

52
static irqreturn_t mcftmr_tick(int irq, void *dummy)
L
Linus Torvalds 已提交
53 54
{
	/* Reset the ColdFire timer */
55
	__raw_writeb(MCFTIMER_TER_CAP | MCFTIMER_TER_REF, TA(MCFTIMER_TER));
56

57
	mcftmr_cnt += mcftmr_cycles_per_jiffy;
58
	return arch_timer_interrupt(irq, dummy);
L
Linus Torvalds 已提交
59 60 61 62
}

/***************************************************************************/

63
static struct irqaction mcftmr_timer_irq = {
64 65
	.name	 = "timer",
	.flags	 = IRQF_DISABLED | IRQF_TIMER,
66
	.handler = mcftmr_tick,
67 68
};

69 70
/***************************************************************************/

71
static cycle_t mcftmr_read_clk(struct clocksource *cs)
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
{
	unsigned long flags;
	u32 cycles;
	u16 tcn;

	local_irq_save(flags);
	tcn = __raw_readw(TA(MCFTIMER_TCN));
	cycles = mcftmr_cnt;
	local_irq_restore(flags);

	return cycles + tcn;
}

/***************************************************************************/

static struct clocksource mcftmr_clk = {
	.name	= "tmr",
	.rating	= 250,
	.read	= mcftmr_read_clk,
	.shift	= 20,
	.mask	= CLOCKSOURCE_MASK(32),
	.flags	= CLOCK_SOURCE_IS_CONTINUOUS,
};

/***************************************************************************/
97

98
void hw_timer_init(void)
L
Linus Torvalds 已提交
99
{
100
	__raw_writew(MCFTIMER_TMR_DISABLE, TA(MCFTIMER_TMR));
101
	mcftmr_cycles_per_jiffy = FREQ / HZ;
102 103 104 105 106 107 108
	/*
	 *	The coldfire timer runs from 0 to TRR included, then 0
	 *	again and so on.  It counts thus actually TRR + 1 steps
	 *	for 1 tick, not TRR.  So if you want n cycles,
	 *	initialize TRR with n - 1.
	 */
	__raw_writetrr(mcftmr_cycles_per_jiffy - 1, TA(MCFTIMER_TRR));
109 110
	__raw_writew(MCFTIMER_TMR_ENORI | MCFTIMER_TMR_CLK16 |
		MCFTIMER_TMR_RESTART | MCFTIMER_TMR_ENABLE, TA(MCFTIMER_TMR));
L
Linus Torvalds 已提交
111

112 113 114
	mcftmr_clk.mult = clocksource_hz2mult(FREQ, mcftmr_clk.shift);
	clocksource_register(&mcftmr_clk);

115
	setup_irq(MCF_IRQ_TIMER, &mcftmr_timer_irq);
L
Linus Torvalds 已提交
116 117 118 119 120 121 122 123 124 125

#ifdef CONFIG_HIGHPROFILE
	coldfire_profile_init();
#endif
}

/***************************************************************************/
#ifdef CONFIG_HIGHPROFILE
/***************************************************************************/

126 127 128
/*
 *	By default use timer2 as the profiler clock timer.
 */
129
#define	PA(a)	(MCFTIMER_BASE2 + (a))
130

L
Linus Torvalds 已提交
131 132
/*
 *	Choose a reasonably fast profile timer. Make it an odd value to
R
Robert P. J. Day 已提交
133
 *	try and get good coverage of kernel operations.
L
Linus Torvalds 已提交
134 135 136 137 138 139
 */
#define	PROFILEHZ	1013

/*
 *	Use the other timer to provide high accuracy profiling info.
 */
140
irqreturn_t coldfire_profile_tick(int irq, void *dummy)
L
Linus Torvalds 已提交
141 142
{
	/* Reset ColdFire timer2 */
143
	__raw_writeb(MCFTIMER_TER_CAP | MCFTIMER_TER_REF, PA(MCFTIMER_TER));
L
Linus Torvalds 已提交
144
	if (current->pid)
M
Matt Waddel 已提交
145
		profile_tick(CPU_PROFILING);
146
	return IRQ_HANDLED;
L
Linus Torvalds 已提交
147 148 149 150
}

/***************************************************************************/

M
Matt Waddel 已提交
151 152 153 154 155 156
static struct irqaction coldfire_profile_irq = {
	.name	 = "profile timer",
	.flags	 = IRQF_DISABLED | IRQF_TIMER,
	.handler = coldfire_profile_tick,
};

L
Linus Torvalds 已提交
157 158
void coldfire_profile_init(void)
{
M
Matt Waddel 已提交
159 160 161
	printk(KERN_INFO "PROFILE: lodging TIMER2 @ %dHz as profile timer\n",
	       PROFILEHZ);

L
Linus Torvalds 已提交
162
	/* Set up TIMER 2 as high speed profile clock */
163
	__raw_writew(MCFTIMER_TMR_DISABLE, PA(MCFTIMER_TMR));
L
Linus Torvalds 已提交
164

M
Matt Waddel 已提交
165
	__raw_writetrr(((MCF_BUSCLK / 16) / PROFILEHZ), PA(MCFTIMER_TRR));
166 167
	__raw_writew(MCFTIMER_TMR_ENORI | MCFTIMER_TMR_CLK16 |
		MCFTIMER_TMR_RESTART | MCFTIMER_TMR_ENABLE, PA(MCFTIMER_TMR));
L
Linus Torvalds 已提交
168

169
	setup_irq(MCF_IRQ_PROFILER, &coldfire_profile_irq);
L
Linus Torvalds 已提交
170 171 172 173 174
}

/***************************************************************************/
#endif	/* CONFIG_HIGHPROFILE */
/***************************************************************************/