pit.c 4.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
/***************************************************************************/

/*
4 5
 *	pit.c -- Freescale ColdFire PIT timer. Currently this type of
 *	         hardware timer only exists in the Freescale ColdFire
6 7
 *		 5270/5271, 5282 and 5208 CPUs. No doubt newer ColdFire
 *		 family members will probably use it too.
L
Linus Torvalds 已提交
8
 *
9
 *	Copyright (C) 1999-2008, Greg Ungerer (gerg@snapgear.com)
L
Linus Torvalds 已提交
10 11 12 13 14 15 16 17 18 19
 *	Copyright (C) 2001-2004, SnapGear Inc. (www.snapgear.com)
 */

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

#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/param.h>
#include <linux/init.h>
#include <linux/interrupt.h>
20
#include <linux/irq.h>
21
#include <linux/clockchips.h>
22
#include <asm/machdep.h>
23
#include <asm/io.h>
L
Linus Torvalds 已提交
24 25 26 27 28 29
#include <asm/coldfire.h>
#include <asm/mcfpit.h>
#include <asm/mcfsim.h>

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

30 31 32
/*
 *	By default use timer1 as the system clock timer.
 */
33
#define	FREQ	((MCF_CLK / 2) / 64)
34
#define	TA(a)	(MCFPIT_BASE1 + (a))
35
#define PIT_CYCLES_PER_JIFFY (FREQ / HZ)
36 37

static u32 pit_cnt;
38

39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 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 97 98 99 100
/*
 * Initialize the PIT timer.
 *
 * This is also called after resume to bring the PIT into operation again.
 */

static void init_cf_pit_timer(enum clock_event_mode mode,
                             struct clock_event_device *evt)
{
	switch (mode) {
	case CLOCK_EVT_MODE_PERIODIC:

		__raw_writew(MCFPIT_PCSR_DISABLE, TA(MCFPIT_PCSR));
		__raw_writew(PIT_CYCLES_PER_JIFFY, TA(MCFPIT_PMR));
		__raw_writew(MCFPIT_PCSR_EN | MCFPIT_PCSR_PIE | \
				MCFPIT_PCSR_OVW | MCFPIT_PCSR_RLD | \
				MCFPIT_PCSR_CLK64, TA(MCFPIT_PCSR));
		break;

	case CLOCK_EVT_MODE_SHUTDOWN:
	case CLOCK_EVT_MODE_UNUSED:

		__raw_writew(MCFPIT_PCSR_DISABLE, TA(MCFPIT_PCSR));
		break;

	case CLOCK_EVT_MODE_ONESHOT:

		__raw_writew(MCFPIT_PCSR_DISABLE, TA(MCFPIT_PCSR));
		__raw_writew(MCFPIT_PCSR_EN | MCFPIT_PCSR_PIE | \
				MCFPIT_PCSR_OVW | MCFPIT_PCSR_CLK64, \
				TA(MCFPIT_PCSR));
		break;

	case CLOCK_EVT_MODE_RESUME:
		/* Nothing to do here */
		break;
	}
}

/*
 * Program the next event in oneshot mode
 *
 * Delta is given in PIT ticks
 */
static int cf_pit_next_event(unsigned long delta,
		struct clock_event_device *evt)
{
	__raw_writew(delta, TA(MCFPIT_PMR));
	return 0;
}

struct clock_event_device cf_pit_clockevent = {
	.name		= "pit",
	.features	= CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
	.set_mode	= init_cf_pit_timer,
	.set_next_event	= cf_pit_next_event,
	.shift		= 32,
	.irq		= MCFINT_VECBASE + MCFINT_PIT1,
};



101 102
/***************************************************************************/

103
static irqreturn_t pit_tick(int irq, void *dummy)
L
Linus Torvalds 已提交
104
{
105
	struct clock_event_device *evt = &cf_pit_clockevent;
106
	u16 pcsr;
L
Linus Torvalds 已提交
107 108

	/* Reset the ColdFire timer */
109 110
	pcsr = __raw_readw(TA(MCFPIT_PCSR));
	__raw_writew(pcsr | MCFPIT_PCSR_PIF, TA(MCFPIT_PCSR));
111

112 113 114
	pit_cnt += PIT_CYCLES_PER_JIFFY;
	evt->event_handler(evt);
	return IRQ_HANDLED;
L
Linus Torvalds 已提交
115 116 117 118
}

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

119
static struct irqaction pit_irq = {
120 121
	.name	 = "timer",
	.flags	 = IRQF_DISABLED | IRQF_TIMER,
122
	.handler = pit_tick,
123 124
};

125 126
/***************************************************************************/

127
static cycle_t pit_read_clk(struct clocksource *cs)
L
Linus Torvalds 已提交
128
{
129 130 131
	unsigned long flags;
	u32 cycles;
	u16 pcntr;
L
Linus Torvalds 已提交
132

133 134 135 136
	local_irq_save(flags);
	pcntr = __raw_readw(TA(MCFPIT_PCNTR));
	cycles = pit_cnt;
	local_irq_restore(flags);
L
Linus Torvalds 已提交
137

138
	return cycles + PIT_CYCLES_PER_JIFFY - pcntr;
139
}
L
Linus Torvalds 已提交
140

141
/***************************************************************************/
L
Linus Torvalds 已提交
142

143 144
static struct clocksource pit_clk = {
	.name	= "pit",
145
	.rating	= 100,
146 147 148 149
	.read	= pit_read_clk,
	.shift	= 20,
	.mask	= CLOCKSOURCE_MASK(32),
};
L
Linus Torvalds 已提交
150 151 152

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

153
void hw_timer_init(void)
L
Linus Torvalds 已提交
154
{
155
	cf_pit_clockevent.cpumask = cpumask_of(smp_processor_id());
156 157 158 159 160 161 162
	cf_pit_clockevent.mult = div_sc(FREQ, NSEC_PER_SEC, 32);
	cf_pit_clockevent.max_delta_ns =
		clockevent_delta2ns(0xFFFF, &cf_pit_clockevent);
	cf_pit_clockevent.min_delta_ns =
		clockevent_delta2ns(0x3f, &cf_pit_clockevent);
	clockevents_register_device(&cf_pit_clockevent);

163
	setup_irq(MCFINT_VECBASE + MCFINT_PIT1, &pit_irq);
L
Linus Torvalds 已提交
164

165 166
	pit_clk.mult = clocksource_hz2mult(FREQ, pit_clk.shift);
	clocksource_register(&pit_clk);
L
Linus Torvalds 已提交
167 168 169
}

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