blob: 12e38f0577f8e85bd2f2c4581128aa82340bf8e9 [file] [log] [blame]
wdenk4e5ca3e2003-12-08 01:34:36 +00001/*
wdenkbf9e3b32004-02-12 00:47:09 +00002 * (C) Copyright 2003 Josef Baumgartner <josef.baumgartner@telex.de>
3 *
4 * (C) Copyright 2000
wdenk4e5ca3e2003-12-08 01:34:36 +00005 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 *
7 * See file CREDITS for list of people who contributed to this
8 * project.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
wdenkbf9e3b32004-02-12 00:47:09 +000017 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wdenk4e5ca3e2003-12-08 01:34:36 +000018 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 * MA 02111-1307 USA
24 */
25
26#include <common.h>
27
wdenkbf9e3b32004-02-12 00:47:09 +000028#include <asm/mcftimer.h>
wdenk4e5ca3e2003-12-08 01:34:36 +000029
Zachary P. Landaueacbd312006-01-26 17:35:56 -050030#ifdef CONFIG_M5271
31#include <asm/m5271.h>
32#include <asm/immap_5271.h>
33#endif
34
wdenkbf9e3b32004-02-12 00:47:09 +000035#ifdef CONFIG_M5272
36#include <asm/m5272.h>
37#include <asm/immap_5272.h>
38#endif
wdenk4e5ca3e2003-12-08 01:34:36 +000039
wdenkbf9e3b32004-02-12 00:47:09 +000040#ifdef CONFIG_M5282
41#include <asm/m5282.h>
42#endif
43
stroesecd42dee2004-12-16 17:56:09 +000044#ifdef CONFIG_M5249
45#include <asm/m5249.h>
46#include <asm/immap_5249.h>
47#endif
48
wdenkbf9e3b32004-02-12 00:47:09 +000049
50static ulong timestamp;
Zachary P. Landaueacbd312006-01-26 17:35:56 -050051#if defined(CONFIG_M5282) || defined(CONFIG_M5271)
wdenkbf9e3b32004-02-12 00:47:09 +000052static unsigned short lastinc;
53#endif
54
55
56#if defined(CONFIG_M5272)
wdenk4e5ca3e2003-12-08 01:34:36 +000057/*
wdenkbf9e3b32004-02-12 00:47:09 +000058 * We use timer 3 which is running with a period of 1 us
wdenk4e5ca3e2003-12-08 01:34:36 +000059 */
60void udelay(unsigned long usec)
61{
wdenkbf9e3b32004-02-12 00:47:09 +000062 volatile timer_t *timerp = (timer_t *) (CFG_MBAR + MCFTIMER_BASE3);
63 uint start, now, tmp;
wdenk4e5ca3e2003-12-08 01:34:36 +000064
wdenkbf9e3b32004-02-12 00:47:09 +000065 while (usec > 0) {
66 if (usec > 65000)
67 tmp = 65000;
68 else
69 tmp = usec;
70 usec = usec - tmp;
71
72 /* Set up TIMER 3 as timebase clock */
73 timerp->timer_tmr = MCFTIMER_TMR_DISABLE;
74 timerp->timer_tcn = 0;
75 /* set period to 1 us */
76 timerp->timer_tmr = (((CFG_CLK / 1000000) - 1) << 8) | MCFTIMER_TMR_CLK1 |
77 MCFTIMER_TMR_FREERUN | MCFTIMER_TMR_ENABLE;
78
79 start = now = timerp->timer_tcn;
80 while (now < start + tmp)
81 now = timerp->timer_tcn;
82 }
wdenk4e5ca3e2003-12-08 01:34:36 +000083}
84
wdenkbf9e3b32004-02-12 00:47:09 +000085void mcf_timer_interrupt (void * not_used){
86 volatile timer_t *timerp = (timer_t *) (CFG_MBAR + MCFTIMER_BASE4);
87 volatile intctrl_t *intp = (intctrl_t *) (CFG_MBAR + MCFSIM_ICR1);
wdenk4e5ca3e2003-12-08 01:34:36 +000088
wdenkbf9e3b32004-02-12 00:47:09 +000089 /* check for timer 4 interrupts */
90 if ((intp->int_isr & 0x01000000) != 0) {
91 return;
92 }
93
94 /* reset timer */
95 timerp->timer_ter = MCFTIMER_TER_CAP | MCFTIMER_TER_REF;
96 timestamp ++;
97}
98
99void timer_init (void) {
100 volatile timer_t *timerp = (timer_t *) (CFG_MBAR + MCFTIMER_BASE4);
101 volatile intctrl_t *intp = (intctrl_t *) (CFG_MBAR + MCFSIM_ICR1);
102
103 timestamp = 0;
104
105 /* Set up TIMER 4 as clock */
106 timerp->timer_tmr = MCFTIMER_TMR_DISABLE;
107
108 /* initialize and enable timer 4 interrupt */
109 irq_install_handler (72, mcf_timer_interrupt, 0);
110 intp->int_icr1 |= 0x0000000d;
111
112 timerp->timer_tcn = 0;
113 timerp->timer_trr = 1000; /* Interrupt every ms */
114 /* set a period of 1us, set timer mode to restart and enable timer and interrupt */
115 timerp->timer_tmr = (((CFG_CLK / 1000000) - 1) << 8) | MCFTIMER_TMR_CLK1 |
116 MCFTIMER_TMR_RESTART | MCFTIMER_TMR_ENORI | MCFTIMER_TMR_ENABLE;
117}
118
119void reset_timer (void)
wdenk4e5ca3e2003-12-08 01:34:36 +0000120{
wdenkbf9e3b32004-02-12 00:47:09 +0000121 timestamp = 0;
wdenk4e5ca3e2003-12-08 01:34:36 +0000122}
123
wdenkbf9e3b32004-02-12 00:47:09 +0000124ulong get_timer (ulong base)
wdenk4e5ca3e2003-12-08 01:34:36 +0000125{
wdenkbf9e3b32004-02-12 00:47:09 +0000126 return (timestamp - base);
wdenk4e5ca3e2003-12-08 01:34:36 +0000127}
128
wdenkbf9e3b32004-02-12 00:47:09 +0000129void set_timer (ulong t)
130{
131 timestamp = t;
132}
133#endif
134
Zachary P. Landaueacbd312006-01-26 17:35:56 -0500135#if defined(CONFIG_M5282) || defined(CONFIG_M5271)
wdenkbf9e3b32004-02-12 00:47:09 +0000136
137void udelay(unsigned long usec)
138{
wdenk50712ba2005-04-03 23:35:57 +0000139 volatile unsigned short *timerp;
140 uint tmp;
141
142 timerp = (volatile unsigned short *) (CFG_MBAR + MCFTIMER_BASE3);
wdenk3c2b3d42005-04-05 23:32:21 +0000143
wdenk50712ba2005-04-03 23:35:57 +0000144 while (usec > 0) {
145 if (usec > 65000)
146 tmp = 65000;
147 else
148 tmp = usec;
149 usec = usec - tmp;
150
151 /* Set up TIMER 3 as timebase clock */
152 timerp[MCFTIMER_PCSR] = MCFTIMER_PCSR_OVW;
153 timerp[MCFTIMER_PMR] = 0;
154 /* set period to 1 us */
155 timerp[MCFTIMER_PCSR] =
Bartlomiej Siekadaa6e412006-12-20 00:27:32 +0100156#ifdef CONFIG_M5271
157 (6 << 8) | MCFTIMER_PCSR_EN | MCFTIMER_PCSR_OVW;
158#else /* !CONFIG_M5271 */
wdenk50712ba2005-04-03 23:35:57 +0000159 (5 << 8) | MCFTIMER_PCSR_EN | MCFTIMER_PCSR_OVW;
Bartlomiej Siekadaa6e412006-12-20 00:27:32 +0100160#endif /* CONFIG_M5271 */
wdenk50712ba2005-04-03 23:35:57 +0000161
wdenk3c2b3d42005-04-05 23:32:21 +0000162 timerp[MCFTIMER_PMR] = tmp;
wdenk50712ba2005-04-03 23:35:57 +0000163 while (timerp[MCFTIMER_PCNTR] > 0);
164 }
wdenkbf9e3b32004-02-12 00:47:09 +0000165}
166
167void timer_init (void)
168{
169 volatile unsigned short *timerp;
170
171 timerp = (volatile unsigned short *) (CFG_MBAR + MCFTIMER_BASE4);
172 timestamp = 0;
173
174 /* Set up TIMER 4 as poll clock */
175 timerp[MCFTIMER_PCSR] = MCFTIMER_PCSR_OVW;
176 timerp[MCFTIMER_PMR] = lastinc = 0;
177 timerp[MCFTIMER_PCSR] =
Bartlomiej Siekadaa6e412006-12-20 00:27:32 +0100178#ifdef CONFIG_M5271
179 (6 << 8) | MCFTIMER_PCSR_EN | MCFTIMER_PCSR_OVW;
180#else /* !CONFIG_M5271 */
wdenkbf9e3b32004-02-12 00:47:09 +0000181 (5 << 8) | MCFTIMER_PCSR_EN | MCFTIMER_PCSR_OVW;
Bartlomiej Siekadaa6e412006-12-20 00:27:32 +0100182#endif /* CONFIG_M5271 */
wdenkbf9e3b32004-02-12 00:47:09 +0000183}
184
185void set_timer (ulong t)
186{
187 volatile unsigned short *timerp;
188
189 timerp = (volatile unsigned short *) (CFG_MBAR + MCFTIMER_BASE4);
190 timestamp = 0;
191 timerp[MCFTIMER_PMR] = lastinc = 0;
192}
193
194ulong get_timer (ulong base)
195{
196 unsigned short now, diff;
197 volatile unsigned short *timerp;
198
199 timerp = (volatile unsigned short *) (CFG_MBAR + MCFTIMER_BASE4);
200 now = timerp[MCFTIMER_PCNTR];
201 diff = -(now - lastinc);
202
203 timestamp += diff;
204 lastinc = now;
205 return timestamp - base;
206}
207
208void wait_ticks (unsigned long ticks)
209{
210 set_timer (0);
211 while (get_timer (0) < ticks);
212}
213#endif
wdenk70f05ac2004-06-09 15:24:18 +0000214
215
stroesecd42dee2004-12-16 17:56:09 +0000216#if defined(CONFIG_M5249)
217/*
218 * We use timer 1 which is running with a period of 1 us
219 */
220void udelay(unsigned long usec)
221{
222 volatile timer_t *timerp = (timer_t *) (CFG_MBAR + MCFTIMER_BASE1);
223 uint start, now, tmp;
224
225 while (usec > 0) {
226 if (usec > 65000)
227 tmp = 65000;
228 else
229 tmp = usec;
230 usec = usec - tmp;
231
232 /* Set up TIMER 1 as timebase clock */
233 timerp->timer_tmr = MCFTIMER_TMR_DISABLE;
234 timerp->timer_tcn = 0;
235 /* set period to 1 us */
236 /* on m5249 the system clock is (cpu_clk / 2) -> divide by 2000000 */
237 timerp->timer_tmr = (((CFG_CLK / 2000000) - 1) << 8) | MCFTIMER_TMR_CLK1 |
238 MCFTIMER_TMR_FREERUN | MCFTIMER_TMR_ENABLE;
239
240 start = now = timerp->timer_tcn;
241 while (now < start + tmp)
242 now = timerp->timer_tcn;
243 }
244}
245
246void mcf_timer_interrupt (void * not_used){
247 volatile timer_t *timerp = (timer_t *) (CFG_MBAR + MCFTIMER_BASE2);
248
249 /* check for timer 2 interrupts */
250 if ((mbar_readLong(MCFSIM_IPR) & 0x00000400) == 0) {
251 return;
252 }
253
254 /* reset timer */
255 timerp->timer_ter = MCFTIMER_TER_CAP | MCFTIMER_TER_REF;
256 timestamp ++;
257}
258
259void timer_init (void) {
260 volatile timer_t *timerp = (timer_t *) (CFG_MBAR + MCFTIMER_BASE2);
261
262 timestamp = 0;
263
264 /* Set up TIMER 2 as clock */
265 timerp->timer_tmr = MCFTIMER_TMR_DISABLE;
266
267 /* initialize and enable timer 2 interrupt */
268 irq_install_handler (31, mcf_timer_interrupt, 0);
269 mbar_writeLong(MCFSIM_IMR, mbar_readLong(MCFSIM_IMR) & ~0x00000400);
270 mbar_writeByte(MCFSIM_TIMER2ICR, MCFSIM_ICR_AUTOVEC | MCFSIM_ICR_LEVEL7 | MCFSIM_ICR_PRI3);
271
272 timerp->timer_tcn = 0;
273 timerp->timer_trr = 1000; /* Interrupt every ms */
274 /* set a period of 1us, set timer mode to restart and enable timer and interrupt */
275 /* on m5249 the system clock is (cpu_clk / 2) -> divide by 2000000 */
276 timerp->timer_tmr = (((CFG_CLK / 2000000) - 1) << 8) | MCFTIMER_TMR_CLK1 |
277 MCFTIMER_TMR_RESTART | MCFTIMER_TMR_ENORI | MCFTIMER_TMR_ENABLE;
278}
279
280void reset_timer (void)
281{
282 timestamp = 0;
283}
284
285ulong get_timer (ulong base)
286{
287 return (timestamp - base);
288}
289
290void set_timer (ulong t)
291{
292 timestamp = t;
293}
294#endif
295
296
wdenk70f05ac2004-06-09 15:24:18 +0000297/*
298 * This function is derived from PowerPC code (read timebase as long long).
299 * On M68K it just returns the timer value.
300 */
301unsigned long long get_ticks(void)
302{
303 return get_timer(0);
304}
305
306/*
307 * This function is derived from PowerPC code (timebase clock frequency).
308 * On M68K it returns the number of timer ticks per second.
309 */
310ulong get_tbclk (void)
311{
312 ulong tbclk;
313 tbclk = CFG_HZ;
314 return tbclk;
315}