timers.c 5.3 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
L
Linus Torvalds 已提交
2 3 4 5 6
/***************************************************************************/

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

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

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

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

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

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

40
#if defined(CONFIG_M53xx) || defined(CONFIG_M5441x)
41 42 43 44 45 46 47
#define	__raw_readtrr	__raw_readl
#define	__raw_writetrr	__raw_writel
#else
#define	__raw_readtrr	__raw_readw
#define	__raw_writetrr	__raw_writew
#endif

48 49 50
static u32 mcftmr_cycles_per_jiffy;
static u32 mcftmr_cnt;

51 52
static irq_handler_t timer_interrupt;

L
Linus Torvalds 已提交
53 54
/***************************************************************************/

55 56 57 58 59
static void init_timer_irq(void)
{
#ifdef MCFSIM_ICR_AUTOVEC
	/* Timer1 is always used as system timer */
	writeb(MCFSIM_ICR_AUTOVEC | MCFSIM_ICR_LEVEL6 | MCFSIM_ICR_PRI3,
60
		MCFSIM_TIMER1ICR);
61 62 63 64 65
	mcf_mapirq2imr(MCF_IRQ_TIMER, MCFINTC_TIMER1);

#ifdef CONFIG_HIGHPROFILE
	/* Timer2 is to be used as a high speed profile timer  */
	writeb(MCFSIM_ICR_AUTOVEC | MCFSIM_ICR_LEVEL7 | MCFSIM_ICR_PRI3,
66
		MCFSIM_TIMER2ICR);
67 68 69 70 71 72 73
	mcf_mapirq2imr(MCF_IRQ_PROFILER, MCFINTC_TIMER2);
#endif
#endif /* MCFSIM_ICR_AUTOVEC */
}

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

74
static irqreturn_t mcftmr_tick(int irq, void *dummy)
L
Linus Torvalds 已提交
75 76
{
	/* Reset the ColdFire timer */
77
	__raw_writeb(MCFTIMER_TER_CAP | MCFTIMER_TER_REF, TA(MCFTIMER_TER));
78

79
	mcftmr_cnt += mcftmr_cycles_per_jiffy;
80
	return timer_interrupt(irq, dummy);
L
Linus Torvalds 已提交
81 82 83 84
}

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

85
static u64 mcftmr_read_clk(struct clocksource *cs)
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
{
	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,
	.mask	= CLOCKSOURCE_MASK(32),
	.flags	= CLOCK_SOURCE_IS_CONTINUOUS,
};

/***************************************************************************/
110

111
void hw_timer_init(irq_handler_t handler)
L
Linus Torvalds 已提交
112
{
113 114
	int r;

115
	__raw_writew(MCFTIMER_TMR_DISABLE, TA(MCFTIMER_TMR));
116
	mcftmr_cycles_per_jiffy = FREQ / HZ;
117 118 119 120 121 122 123
	/*
	 *	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));
124 125
	__raw_writew(MCFTIMER_TMR_ENORI | MCFTIMER_TMR_CLK16 |
		MCFTIMER_TMR_RESTART | MCFTIMER_TMR_ENABLE, TA(MCFTIMER_TMR));
L
Linus Torvalds 已提交
126

127
	clocksource_register_hz(&mcftmr_clk, FREQ);
128

129
	timer_interrupt = handler;
130
	init_timer_irq();
131 132 133 134 135
	r = request_irq(MCF_IRQ_TIMER, mcftmr_tick, IRQF_TIMER, "timer", NULL);
	if (r) {
		pr_err("Failed to request irq %d (timer): %pe\n", MCF_IRQ_TIMER,
		       ERR_PTR(r));
	}
L
Linus Torvalds 已提交
136 137 138 139 140 141 142 143 144 145

#ifdef CONFIG_HIGHPROFILE
	coldfire_profile_init();
#endif
}

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

146 147 148
/*
 *	By default use timer2 as the profiler clock timer.
 */
149
#define	PA(a)	(MCFTIMER_BASE2 + (a))
150

L
Linus Torvalds 已提交
151 152
/*
 *	Choose a reasonably fast profile timer. Make it an odd value to
R
Robert P. J. Day 已提交
153
 *	try and get good coverage of kernel operations.
L
Linus Torvalds 已提交
154 155 156 157 158 159
 */
#define	PROFILEHZ	1013

/*
 *	Use the other timer to provide high accuracy profiling info.
 */
160
irqreturn_t coldfire_profile_tick(int irq, void *dummy)
L
Linus Torvalds 已提交
161 162
{
	/* Reset ColdFire timer2 */
163
	__raw_writeb(MCFTIMER_TER_CAP | MCFTIMER_TER_REF, PA(MCFTIMER_TER));
L
Linus Torvalds 已提交
164
	if (current->pid)
M
Matt Waddel 已提交
165
		profile_tick(CPU_PROFILING);
166
	return IRQ_HANDLED;
L
Linus Torvalds 已提交
167 168 169 170 171 172
}

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

void coldfire_profile_init(void)
{
173 174
	int ret;

M
Matt Waddel 已提交
175 176 177
	printk(KERN_INFO "PROFILE: lodging TIMER2 @ %dHz as profile timer\n",
	       PROFILEHZ);

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

M
Matt Waddel 已提交
181
	__raw_writetrr(((MCF_BUSCLK / 16) / PROFILEHZ), PA(MCFTIMER_TRR));
182 183
	__raw_writew(MCFTIMER_TMR_ENORI | MCFTIMER_TMR_CLK16 |
		MCFTIMER_TMR_RESTART | MCFTIMER_TMR_ENABLE, PA(MCFTIMER_TMR));
L
Linus Torvalds 已提交
184

185 186 187 188 189 190
	ret = request_irq(MCF_IRQ_PROFILER, coldfire_profile_tick, IRQF_TIMER,
			  "profile timer", NULL);
	if (ret) {
		pr_err("Failed to request irq %d (profile timer): %pe\n",
		       MCF_IRQ_PROFILER, ERR_PTR(ret));
	}
L
Linus Torvalds 已提交
191 192 193 194 195
}

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