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

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

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

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

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

26 27 28 29 30
/*
 *	By default use timer1 as the system clock timer.
 */
#define	TA(a)	(MCF_MBAR + MCFTIMER_BASE1 + (a))

L
Linus Torvalds 已提交
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
/*
 *	Default the timer and vector to use for ColdFire. Some ColdFire
 *	CPU's and some boards may want different. Their sub-architecture
 *	startup code (in config.c) can change these if they want.
 */
unsigned int	mcf_timervector = 29;
unsigned int	mcf_profilevector = 31;
unsigned int	mcf_timerlevel = 5;

/*
 *	These provide the underlying interrupt vector support.
 *	Unfortunately it is a little different on each ColdFire.
 */
extern void mcf_settimericr(int timer, int level);
extern int mcf_timerirqpending(int timer);

47 48 49 50 51 52 53 54
#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

L
Linus Torvalds 已提交
55 56 57 58 59
/***************************************************************************/

void coldfire_tick(void)
{
	/* Reset the ColdFire timer */
60
	__raw_writeb(MCFTIMER_TER_CAP | MCFTIMER_TER_REF, TA(MCFTIMER_TER));
L
Linus Torvalds 已提交
61 62 63 64
}

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

65
void coldfire_timer_init(irq_handler_t handler)
L
Linus Torvalds 已提交
66
{
67
	__raw_writew(MCFTIMER_TMR_DISABLE, TA(MCFTIMER_TMR));
68
	__raw_writetrr(((MCF_BUSCLK / 16) / HZ), TA(MCFTIMER_TRR));
69 70
	__raw_writew(MCFTIMER_TMR_ENORI | MCFTIMER_TMR_CLK16 |
		MCFTIMER_TMR_RESTART | MCFTIMER_TMR_ENABLE, TA(MCFTIMER_TMR));
L
Linus Torvalds 已提交
71

72
	request_irq(mcf_timervector, handler, IRQF_DISABLED, "timer", NULL);
L
Linus Torvalds 已提交
73 74 75 76 77 78 79 80 81 82 83 84 85
	mcf_settimericr(1, mcf_timerlevel);

#ifdef CONFIG_HIGHPROFILE
	coldfire_profile_init();
#endif
}

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

unsigned long coldfire_timer_offset(void)
{
	unsigned long trr, tcn, offset;

86
	tcn = __raw_readw(TA(MCFTIMER_TCN));
87
	trr = __raw_readtrr(TA(MCFTIMER_TRR));
L
Linus Torvalds 已提交
88 89 90 91 92 93 94 95 96 97 98 99
	offset = (tcn * (1000000 / HZ)) / trr;

	/* Check if we just wrapped the counters and maybe missed a tick */
	if ((offset < (1000000 / HZ / 2)) && mcf_timerirqpending(1))
		offset += 1000000 / HZ;
	return offset;
}

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

100 101 102 103 104
/*
 *	By default use timer2 as the profiler clock timer.
 */
#define	PA(a)	(MCF_MBAR + MCFTIMER_BASE2 + (a))

L
Linus Torvalds 已提交
105 106 107 108 109 110 111 112 113
/*
 *	Choose a reasonably fast profile timer. Make it an odd value to
 *	try and get good coverage of kernal operations.
 */
#define	PROFILEHZ	1013

/*
 *	Use the other timer to provide high accuracy profiling info.
 */
114
irqreturn_t coldfire_profile_tick(int irq, void *dummy)
L
Linus Torvalds 已提交
115 116
{
	/* Reset ColdFire timer2 */
117
	__raw_writeb(MCFTIMER_TER_CAP | MCFTIMER_TER_REF, PA(MCFTIMER_TER));
L
Linus Torvalds 已提交
118 119
	if (current->pid)
		profile_tick(CPU_PROFILING, regs);
120
	return IRQ_HANDLED;
L
Linus Torvalds 已提交
121 122 123 124 125 126 127 128 129
}

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

void coldfire_profile_init(void)
{
	printk(KERN_INFO "PROFILE: lodging TIMER2 @ %dHz as profile timer\n", PROFILEHZ);

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

132
	__raw_writetrr(((MCF_CLK / 16) / PROFILEHZ), PA(MCFTIMER_TRR));
133 134
	__raw_writew(MCFTIMER_TMR_ENORI | MCFTIMER_TMR_CLK16 |
		MCFTIMER_TMR_RESTART | MCFTIMER_TMR_ENABLE, PA(MCFTIMER_TMR));
L
Linus Torvalds 已提交
135 136

	request_irq(mcf_profilevector, coldfire_profile_tick,
137
		(IRQF_DISABLED | IRQ_FLG_FAST), "profile timer", NULL);
L
Linus Torvalds 已提交
138 139 140 141 142 143
	mcf_settimericr(2, 7);
}

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