blob: 7eaea5e7f77deddffede0a00cd5cdc03c4c45e5b [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
TsiChungLiew52b01762007-07-05 23:36:16 -050028#include <asm/timer.h>
29#include <asm/immap.h>
Richard Retanubun42a83762009-03-20 15:30:10 -040030#include <watchdog.h>
wdenk4e5ca3e2003-12-08 01:34:36 +000031
TsiChungLiew99c03c12007-08-05 03:58:52 -050032DECLARE_GLOBAL_DATA_PTR;
33
Richard Retanubun42a83762009-03-20 15:30:10 -040034static volatile ulong timestamp = 0;
35
36#ifndef CONFIG_SYS_WATCHDOG_FREQ
37#define CONFIG_SYS_WATCHDOG_FREQ (CONFIG_SYS_HZ / 2)
38#endif
stroesecd42dee2004-12-16 17:56:09 +000039
TsiChung Liew8e585f02007-06-18 13:50:13 -050040#if defined(CONFIG_MCFTMR)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020041#ifndef CONFIG_SYS_UDELAY_BASE
TsiChung Liew8e585f02007-06-18 13:50:13 -050042# error "uDelay base not defined!"
43#endif
44
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020045#if !defined(CONFIG_SYS_TMR_BASE) || !defined(CONFIG_SYS_INTR_BASE) || !defined(CONFIG_SYS_TMRINTR_NO) || !defined(CONFIG_SYS_TMRINTR_MASK)
TsiChung Liew8e585f02007-06-18 13:50:13 -050046# error "TMR_BASE, INTR_BASE, TMRINTR_NO or TMRINTR_MASk not defined!"
47#endif
TsiChungLiew52b01762007-07-05 23:36:16 -050048extern void dtimer_intr_setup(void);
TsiChung Liew8e585f02007-06-18 13:50:13 -050049
Ingo van Lil3eb90ba2009-11-24 14:09:21 +010050void __udelay(unsigned long usec)
TsiChung Liew8e585f02007-06-18 13:50:13 -050051{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020052 volatile dtmr_t *timerp = (dtmr_t *) (CONFIG_SYS_UDELAY_BASE);
TsiChung Liew8e585f02007-06-18 13:50:13 -050053 uint start, now, tmp;
54
55 while (usec > 0) {
56 if (usec > 65000)
57 tmp = 65000;
58 else
59 tmp = usec;
60 usec = usec - tmp;
61
62 /* Set up TIMER 3 as timebase clock */
63 timerp->tmr = DTIM_DTMR_RST_RST;
64 timerp->tcn = 0;
65 /* set period to 1 us */
66 timerp->tmr =
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020067 CONFIG_SYS_TIMER_PRESCALER | DTIM_DTMR_CLK_DIV1 | DTIM_DTMR_FRR |
TsiChungLiew52b01762007-07-05 23:36:16 -050068 DTIM_DTMR_RST_EN;
TsiChung Liew8e585f02007-06-18 13:50:13 -050069
70 start = now = timerp->tcn;
71 while (now < start + tmp)
72 now = timerp->tcn;
73 }
74}
75
76void dtimer_interrupt(void *not_used)
77{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020078 volatile dtmr_t *timerp = (dtmr_t *) (CONFIG_SYS_TMR_BASE);
TsiChung Liew8e585f02007-06-18 13:50:13 -050079
80 /* check for timer interrupt asserted */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020081 if ((CONFIG_SYS_TMRPND_REG & CONFIG_SYS_TMRINTR_MASK) == CONFIG_SYS_TMRINTR_PEND) {
TsiChung Liew8e585f02007-06-18 13:50:13 -050082 timerp->ter = (DTIM_DTER_CAP | DTIM_DTER_REF);
83 timestamp++;
Richard Retanubun42a83762009-03-20 15:30:10 -040084
85 #if defined(CONFIG_WATCHDOG) || defined (CONFIG_HW_WATCHDOG)
86 if ((timestamp % (CONFIG_SYS_WATCHDOG_FREQ)) == 0) {
87 WATCHDOG_RESET ();
88 }
89 #endif /* CONFIG_WATCHDOG || CONFIG_HW_WATCHDOG */
TsiChung Liew8e585f02007-06-18 13:50:13 -050090 return;
91 }
92}
93
94void timer_init(void)
95{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020096 volatile dtmr_t *timerp = (dtmr_t *) (CONFIG_SYS_TMR_BASE);
TsiChung Liew8e585f02007-06-18 13:50:13 -050097
98 timestamp = 0;
99
100 timerp->tcn = 0;
101 timerp->trr = 0;
102
103 /* Set up TIMER 4 as clock */
104 timerp->tmr = DTIM_DTMR_RST_RST;
105
TsiChungLiew52b01762007-07-05 23:36:16 -0500106 /* initialize and enable timer interrupt */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200107 irq_install_handler(CONFIG_SYS_TMRINTR_NO, dtimer_interrupt, 0);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500108
109 timerp->tcn = 0;
110 timerp->trr = 1000; /* Interrupt every ms */
111
TsiChungLiew52b01762007-07-05 23:36:16 -0500112 dtimer_intr_setup();
TsiChung Liew8e585f02007-06-18 13:50:13 -0500113
114 /* set a period of 1us, set timer mode to restart and enable timer and interrupt */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200115 timerp->tmr = CONFIG_SYS_TIMER_PRESCALER | DTIM_DTMR_CLK_DIV1 |
TsiChung Liew8e585f02007-06-18 13:50:13 -0500116 DTIM_DTMR_FRR | DTIM_DTMR_ORRI | DTIM_DTMR_RST_EN;
117}
118
119void reset_timer(void)
120{
121 timestamp = 0;
122}
123
124ulong get_timer(ulong base)
125{
126 return (timestamp - base);
127}
128
129void set_timer(ulong t)
130{
131 timestamp = t;
132}
133#endif /* CONFIG_MCFTMR */
134
135#if defined(CONFIG_MCFPIT)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200136#if !defined(CONFIG_SYS_PIT_BASE)
137# error "CONFIG_SYS_PIT_BASE not defined!"
TsiChung Liew8e585f02007-06-18 13:50:13 -0500138#endif
139
140static unsigned short lastinc;
141
Ingo van Lil3eb90ba2009-11-24 14:09:21 +0100142void __udelay(unsigned long usec)
TsiChung Liew8e585f02007-06-18 13:50:13 -0500143{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200144 volatile pit_t *timerp = (pit_t *) (CONFIG_SYS_UDELAY_BASE);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500145 uint tmp;
146
147 while (usec > 0) {
148 if (usec > 65000)
149 tmp = 65000;
150 else
151 tmp = usec;
152 usec = usec - tmp;
153
154 /* Set up TIMER 3 as timebase clock */
155 timerp->pcsr = PIT_PCSR_OVW;
156 timerp->pmr = 0;
157 /* set period to 1 us */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200158 timerp->pcsr |= PIT_PCSR_PRE(CONFIG_SYS_PIT_PRESCALE) | PIT_PCSR_EN;
TsiChung Liew8e585f02007-06-18 13:50:13 -0500159
160 timerp->pmr = tmp;
161 while (timerp->pcntr > 0) ;
162 }
163}
164
165void timer_init(void)
166{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200167 volatile pit_t *timerp = (pit_t *) (CONFIG_SYS_PIT_BASE);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500168 timestamp = 0;
169
170 /* Set up TIMER 4 as poll clock */
171 timerp->pcsr = PIT_PCSR_OVW;
172 timerp->pmr = lastinc = 0;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200173 timerp->pcsr |= PIT_PCSR_PRE(CONFIG_SYS_PIT_PRESCALE) | PIT_PCSR_EN;
TsiChung Liew8e585f02007-06-18 13:50:13 -0500174}
175
176void set_timer(ulong t)
177{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200178 volatile pit_t *timerp = (pit_t *) (CONFIG_SYS_PIT_BASE);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500179
180 timestamp = 0;
181 timerp->pmr = lastinc = 0;
182}
183
184ulong get_timer(ulong base)
185{
186 unsigned short now, diff;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200187 volatile pit_t *timerp = (pit_t *) (CONFIG_SYS_PIT_BASE);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500188
189 now = timerp->pcntr;
190 diff = -(now - lastinc);
191
192 timestamp += diff;
193 lastinc = now;
194 return timestamp - base;
195}
196
197void wait_ticks(unsigned long ticks)
198{
199 set_timer(0);
200 while (get_timer(0) < ticks) ;
201}
202#endif /* CONFIG_MCFPIT */
stroesecd42dee2004-12-16 17:56:09 +0000203
wdenk70f05ac2004-06-09 15:24:18 +0000204/*
205 * This function is derived from PowerPC code (read timebase as long long).
206 * On M68K it just returns the timer value.
207 */
208unsigned long long get_ticks(void)
209{
210 return get_timer(0);
211}
212
Stefan Roesef2302d42008-08-06 14:05:38 +0200213unsigned long usec2ticks(unsigned long usec)
214{
215 return get_timer(usec);
216}
217
wdenk70f05ac2004-06-09 15:24:18 +0000218/*
219 * This function is derived from PowerPC code (timebase clock frequency).
220 * On M68K it returns the number of timer ticks per second.
221 */
TsiChungLiew52b01762007-07-05 23:36:16 -0500222ulong get_tbclk(void)
wdenk70f05ac2004-06-09 15:24:18 +0000223{
224 ulong tbclk;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200225 tbclk = CONFIG_SYS_HZ;
wdenk70f05ac2004-06-09 15:24:18 +0000226 return tbclk;
227}