1 /***************************************************************************/
4 * pit.c -- Freescale ColdFire PIT timer. Currently this type of
5 * hardware timer only exists in the Freescale ColdFire
6 * 5270/5271, 5282 and 5208 CPUs. No doubt newer ColdFire
7 * family members will probably use it too.
9 * Copyright (C) 1999-2008, Greg Ungerer (gerg@snapgear.com)
10 * Copyright (C) 2001-2004, SnapGear Inc. (www.snapgear.com)
13 /***************************************************************************/
15 #include <linux/kernel.h>
16 #include <linux/sched.h>
17 #include <linux/param.h>
18 #include <linux/init.h>
19 #include <linux/interrupt.h>
20 #include <linux/irq.h>
21 #include <linux/clocksource.h>
22 #include <asm/machdep.h>
24 #include <asm/coldfire.h>
25 #include <asm/mcfpit.h>
26 #include <asm/mcfsim.h>
28 /***************************************************************************/
31 * By default use timer1 as the system clock timer.
33 #define FREQ ((MCF_CLK / 2) / 64)
34 #define TA(a) (MCF_IPSBAR + MCFPIT_BASE1 + (a))
35 #define INTC0 (MCF_IPSBAR + MCFICM_INTC0)
37 static u32 pit_cycles_per_jiffy
;
40 /***************************************************************************/
42 static irqreturn_t
pit_tick(int irq
, void *dummy
)
46 /* Reset the ColdFire timer */
47 pcsr
= __raw_readw(TA(MCFPIT_PCSR
));
48 __raw_writew(pcsr
| MCFPIT_PCSR_PIF
, TA(MCFPIT_PCSR
));
50 pit_cnt
+= pit_cycles_per_jiffy
;
51 return arch_timer_interrupt(irq
, dummy
);
54 /***************************************************************************/
56 static struct irqaction pit_irq
= {
58 .flags
= IRQF_DISABLED
| IRQF_TIMER
,
62 /***************************************************************************/
64 static cycle_t
pit_read_clk(void)
70 local_irq_save(flags
);
71 pcntr
= __raw_readw(TA(MCFPIT_PCNTR
));
73 local_irq_restore(flags
);
75 return cycles
+ pit_cycles_per_jiffy
- pcntr
;
78 /***************************************************************************/
80 static struct clocksource pit_clk
= {
85 .mask
= CLOCKSOURCE_MASK(32),
86 .flags
= CLOCK_SOURCE_IS_CONTINUOUS
,
89 /***************************************************************************/
91 void hw_timer_init(void)
95 setup_irq(MCFINT_VECBASE
+ MCFINT_PIT1
, &pit_irq
);
97 __raw_writeb(ICR_INTRCONF
, INTC0
+ MCFINTC_ICR0
+ MCFINT_PIT1
);
98 imr
= __raw_readl(INTC0
+ MCFPIT_IMR
);
99 imr
&= ~MCFPIT_IMR_IBIT
;
100 __raw_writel(imr
, INTC0
+ MCFPIT_IMR
);
102 /* Set up PIT timer 1 as poll clock */
103 pit_cycles_per_jiffy
= FREQ
/ HZ
;
104 __raw_writew(MCFPIT_PCSR_DISABLE
, TA(MCFPIT_PCSR
));
105 __raw_writew(pit_cycles_per_jiffy
, TA(MCFPIT_PMR
));
106 __raw_writew(MCFPIT_PCSR_EN
| MCFPIT_PCSR_PIE
| MCFPIT_PCSR_OVW
|
107 MCFPIT_PCSR_RLD
| MCFPIT_PCSR_CLK64
, TA(MCFPIT_PCSR
));
109 pit_clk
.mult
= clocksource_hz2mult(FREQ
, pit_clk
.shift
);
110 clocksource_register(&pit_clk
);
113 /***************************************************************************/