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/clockchips.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)
36 #define PIT_CYCLES_PER_JIFFY (FREQ / HZ)
41 * Initialize the PIT timer.
43 * This is also called after resume to bring the PIT into operation again.
46 static void init_cf_pit_timer(enum clock_event_mode mode
,
47 struct clock_event_device
*evt
)
50 case CLOCK_EVT_MODE_PERIODIC
:
52 __raw_writew(MCFPIT_PCSR_DISABLE
, TA(MCFPIT_PCSR
));
53 __raw_writew(PIT_CYCLES_PER_JIFFY
, TA(MCFPIT_PMR
));
54 __raw_writew(MCFPIT_PCSR_EN
| MCFPIT_PCSR_PIE
| \
55 MCFPIT_PCSR_OVW
| MCFPIT_PCSR_RLD
| \
56 MCFPIT_PCSR_CLK64
, TA(MCFPIT_PCSR
));
59 case CLOCK_EVT_MODE_SHUTDOWN
:
60 case CLOCK_EVT_MODE_UNUSED
:
62 __raw_writew(MCFPIT_PCSR_DISABLE
, TA(MCFPIT_PCSR
));
65 case CLOCK_EVT_MODE_ONESHOT
:
67 __raw_writew(MCFPIT_PCSR_DISABLE
, TA(MCFPIT_PCSR
));
68 __raw_writew(MCFPIT_PCSR_EN
| MCFPIT_PCSR_PIE
| \
69 MCFPIT_PCSR_OVW
| MCFPIT_PCSR_CLK64
, \
73 case CLOCK_EVT_MODE_RESUME
:
74 /* Nothing to do here */
80 * Program the next event in oneshot mode
82 * Delta is given in PIT ticks
84 static int cf_pit_next_event(unsigned long delta
,
85 struct clock_event_device
*evt
)
87 __raw_writew(delta
, TA(MCFPIT_PMR
));
91 struct clock_event_device cf_pit_clockevent
= {
93 .features
= CLOCK_EVT_FEAT_PERIODIC
| CLOCK_EVT_FEAT_ONESHOT
,
94 .set_mode
= init_cf_pit_timer
,
95 .set_next_event
= cf_pit_next_event
,
97 .irq
= MCFINT_VECBASE
+ MCFINT_PIT1
,
102 /***************************************************************************/
104 static irqreturn_t
pit_tick(int irq
, void *dummy
)
106 struct clock_event_device
*evt
= &cf_pit_clockevent
;
109 /* Reset the ColdFire timer */
110 pcsr
= __raw_readw(TA(MCFPIT_PCSR
));
111 __raw_writew(pcsr
| MCFPIT_PCSR_PIF
, TA(MCFPIT_PCSR
));
113 pit_cnt
+= PIT_CYCLES_PER_JIFFY
;
114 evt
->event_handler(evt
);
118 /***************************************************************************/
120 static struct irqaction pit_irq
= {
122 .flags
= IRQF_DISABLED
| IRQF_TIMER
,
126 /***************************************************************************/
128 static cycle_t
pit_read_clk(struct clocksource
*cs
)
134 local_irq_save(flags
);
135 pcntr
= __raw_readw(TA(MCFPIT_PCNTR
));
137 local_irq_restore(flags
);
139 return cycles
+ PIT_CYCLES_PER_JIFFY
- pcntr
;
142 /***************************************************************************/
144 static struct clocksource pit_clk
= {
147 .read
= pit_read_clk
,
149 .mask
= CLOCKSOURCE_MASK(32),
150 .flags
= CLOCK_SOURCE_IS_CONTINUOUS
,
153 /***************************************************************************/
155 void hw_timer_init(void)
159 cf_pit_clockevent
.cpumask
= cpumask_of(smp_processor_id());
160 cf_pit_clockevent
.mult
= div_sc(FREQ
, NSEC_PER_SEC
, 32);
161 cf_pit_clockevent
.max_delta_ns
=
162 clockevent_delta2ns(0xFFFF, &cf_pit_clockevent
);
163 cf_pit_clockevent
.min_delta_ns
=
164 clockevent_delta2ns(0x3f, &cf_pit_clockevent
);
165 clockevents_register_device(&cf_pit_clockevent
);
167 setup_irq(MCFINT_VECBASE
+ MCFINT_PIT1
, &pit_irq
);
169 __raw_writeb(ICR_INTRCONF
, INTC0
+ MCFINTC_ICR0
+ MCFINT_PIT1
);
170 imr
= __raw_readl(INTC0
+ MCFPIT_IMR
);
171 imr
&= ~MCFPIT_IMR_IBIT
;
172 __raw_writel(imr
, INTC0
+ MCFPIT_IMR
);
174 pit_clk
.mult
= clocksource_hz2mult(FREQ
, pit_clk
.shift
);
175 clocksource_register(&pit_clk
);
178 /***************************************************************************/