MINI2440: Updated early nand loader
[u-boot-openmoko/mini2440.git] / cpu / arm720t / interrupts.c
blob475607d95a29896342fee3fe2f8a860c916dc73c
1 /*
2 * (C) Copyright 2002
3 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
4 * Marius Groeger <mgroeger@sysgo.de>
6 * (C) Copyright 2002
7 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
8 * Alex Zuepke <azu@sysgo.de>
10 * See file CREDITS for list of people who contributed to this
11 * project.
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License as
15 * published by the Free Software Foundation; either version 2 of
16 * the License, or (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
26 * MA 02111-1307 USA
29 #include <common.h>
30 #include <clps7111.h>
31 #include <asm/proc-armv/ptrace.h>
32 #include <asm/hardware.h>
34 #ifndef CONFIG_NETARM
35 /* we always count down the max. */
36 #define TIMER_LOAD_VAL 0xffff
37 /* macro to read the 16 bit timer */
38 #define READ_TIMER (IO_TC1D & 0xffff)
40 #ifdef CONFIG_LPC2292
41 #undef READ_TIMER
42 #define READ_TIMER (0xFFFFFFFF - GET32(T0TC))
43 #endif
45 #else
46 #define IRQEN (*(volatile unsigned int *)(NETARM_GEN_MODULE_BASE + NETARM_GEN_INTR_ENABLE))
47 #define TM2CTRL (*(volatile unsigned int *)(NETARM_GEN_MODULE_BASE + NETARM_GEN_TIMER2_CONTROL))
48 #define TM2STAT (*(volatile unsigned int *)(NETARM_GEN_MODULE_BASE + NETARM_GEN_TIMER2_STATUS))
49 #define TIMER_LOAD_VAL NETARM_GEN_TSTAT_CTC_MASK
50 #define READ_TIMER (TM2STAT & NETARM_GEN_TSTAT_CTC_MASK)
51 #endif
53 #ifdef CONFIG_S3C4510B
54 /* require interrupts for the S3C4510B */
55 # ifndef CONFIG_USE_IRQ
56 # error CONFIG_USE_IRQ _must_ be defined when using CONFIG_S3C4510B
57 # else
58 static struct _irq_handler IRQ_HANDLER[N_IRQS];
59 # endif
60 #endif /* CONFIG_S3C4510B */
62 #ifdef CONFIG_USE_IRQ
63 void do_irq (struct pt_regs *pt_regs)
65 #if defined(CONFIG_S3C4510B)
66 unsigned int pending;
68 while ( (pending = GET_REG( REG_INTOFFSET)) != 0x54) { /* sentinal value for no pending interrutps */
69 IRQ_HANDLER[pending>>2].m_func( IRQ_HANDLER[pending>>2].m_data);
71 /* clear pending interrupt */
72 PUT_REG( REG_INTPEND, (1<<(pending>>2)));
74 #elif defined(CONFIG_INTEGRATOR) && defined(CONFIG_ARCH_INTEGRATOR)
75 /* No do_irq() for IntegratorAP/CM720T as yet */
76 #elif defined(CONFIG_LPC2292)
78 void (*pfnct)(void);
80 pfnct = (void (*)(void))VICVectAddr;
82 (*pfnct)();
83 #else
84 #error do_irq() not defined for this CPU type
85 #endif
87 #endif
89 #ifdef CONFIG_S3C4510B
90 static void default_isr( void *data) {
91 printf ("default_isr(): called for IRQ %d\n", (int)data);
94 static void timer_isr( void *data) {
95 unsigned int *pTime = (unsigned int *)data;
97 (*pTime)++;
98 if ( !(*pTime % (CFG_HZ/4))) {
99 /* toggle LED 0 */
100 PUT_REG( REG_IOPDATA, GET_REG(REG_IOPDATA) ^ 0x1);
104 #endif
106 #if defined(CONFIG_INTEGRATOR) && defined(CONFIG_ARCH_INTEGRATOR)
107 /* Use IntegratorAP routines in board/integratorap.c */
108 #else
110 static ulong timestamp;
111 static ulong lastdec;
113 int interrupt_init (void)
116 #if defined(CONFIG_NETARM)
117 /* disable all interrupts */
118 IRQEN = 0;
120 /* operate timer 2 in non-prescale mode */
121 TM2CTRL = ( NETARM_GEN_TIMER_SET_HZ(CFG_HZ) |
122 NETARM_GEN_TCTL_ENABLE |
123 NETARM_GEN_TCTL_INIT_COUNT(TIMER_LOAD_VAL));
125 /* set timer 2 counter */
126 lastdec = TIMER_LOAD_VAL;
127 #elif defined(CONFIG_IMPA7) || defined(CONFIG_EP7312) || defined(CONFIG_ARMADILLO)
128 /* disable all interrupts */
129 IO_INTMR1 = 0;
131 /* operate timer 1 in prescale mode */
132 IO_SYSCON1 |= SYSCON1_TC1M;
134 /* select 2kHz clock source for timer 1 */
135 IO_SYSCON1 &= ~SYSCON1_TC1S;
137 /* set timer 1 counter */
138 lastdec = IO_TC1D = TIMER_LOAD_VAL;
139 #elif defined(CONFIG_S3C4510B)
140 int i;
142 /* install default interrupt handlers */
143 for ( i = 0; i < N_IRQS; i++) {
144 IRQ_HANDLER[i].m_data = (void *)i;
145 IRQ_HANDLER[i].m_func = default_isr;
148 /* configure interrupts for IRQ mode */
149 PUT_REG( REG_INTMODE, 0x0);
150 /* clear any pending interrupts */
151 PUT_REG( REG_INTPEND, 0x1FFFFF);
153 lastdec = 0;
155 /* install interrupt handler for timer */
156 IRQ_HANDLER[INT_TIMER0].m_data = (void *)&timestamp;
157 IRQ_HANDLER[INT_TIMER0].m_func = timer_isr;
159 /* configure free running timer 0 */
160 PUT_REG( REG_TMOD, 0x0);
161 /* Stop timer 0 */
162 CLR_REG( REG_TMOD, TM0_RUN);
164 /* Configure for interval mode */
165 CLR_REG( REG_TMOD, TM1_TOGGLE);
168 * Load Timer data register with count down value.
169 * count_down_val = CFG_SYS_CLK_FREQ/CFG_HZ
171 PUT_REG( REG_TDATA0, (CFG_SYS_CLK_FREQ / CFG_HZ));
174 * Enable global interrupt
175 * Enable timer0 interrupt
177 CLR_REG( REG_INTMASK, ((1<<INT_GLOBAL) | (1<<INT_TIMER0)));
179 /* Start timer */
180 SET_REG( REG_TMOD, TM0_RUN);
181 #elif defined(CONFIG_LPC2292)
182 PUT32(T0IR, 0); /* disable all timer0 interrupts */
183 PUT32(T0TCR, 0); /* disable timer0 */
184 PUT32(T0PR, CFG_SYS_CLK_FREQ / CFG_HZ);
185 PUT32(T0MCR, 0);
186 PUT32(T0TC, 0);
187 PUT32(T0TCR, 1); /* enable timer0 */
189 #else
190 #error No interrupt_init() defined for this CPU type
191 #endif
192 timestamp = 0;
194 return (0);
197 #endif /* ! IntegratorAP */
200 * timer without interrupts
204 #if defined(CONFIG_IMPA7) || defined(CONFIG_EP7312) || defined(CONFIG_NETARM) || defined(CONFIG_ARMADILLO) || defined(CONFIG_LPC2292)
206 void reset_timer (void)
208 reset_timer_masked ();
211 ulong get_timer (ulong base)
213 return get_timer_masked () - base;
216 void set_timer (ulong t)
218 timestamp = t;
221 void udelay (unsigned long usec)
223 ulong tmo;
225 tmo = usec / 1000;
226 tmo *= CFG_HZ;
227 tmo /= 1000;
229 tmo += get_timer (0);
231 while (get_timer_masked () < tmo)
232 #ifdef CONFIG_LPC2292
233 /* GJ - not sure whether this is really needed or a misunderstanding */
234 __asm__ __volatile__(" nop");
235 #else
236 /*NOP*/;
237 #endif
240 void reset_timer_masked (void)
242 /* reset time */
243 lastdec = READ_TIMER;
244 timestamp = 0;
247 ulong get_timer_masked (void)
249 ulong now = READ_TIMER;
251 if (lastdec >= now) {
252 /* normal mode */
253 timestamp += lastdec - now;
254 } else {
255 /* we have an overflow ... */
256 timestamp += lastdec + TIMER_LOAD_VAL - now;
258 lastdec = now;
260 return timestamp;
263 void udelay_masked (unsigned long usec)
265 ulong tmo;
266 ulong endtime;
267 signed long diff;
269 if (usec >= 1000) {
270 tmo = usec / 1000;
271 tmo *= CFG_HZ;
272 tmo /= 1000;
273 } else {
274 tmo = usec * CFG_HZ;
275 tmo /= (1000*1000);
278 endtime = get_timer_masked () + tmo;
280 do {
281 ulong now = get_timer_masked ();
282 diff = endtime - now;
283 } while (diff >= 0);
286 #elif defined(CONFIG_S3C4510B)
288 ulong get_timer (ulong base)
290 return timestamp - base;
293 void udelay (unsigned long usec)
295 u32 ticks;
297 ticks = (usec * CFG_HZ) / 1000000;
299 ticks += get_timer (0);
301 while (get_timer (0) < ticks)
302 /*NOP*/;
306 #elif defined(CONFIG_INTEGRATOR) && defined(CONFIG_ARCH_INTEGRATOR)
307 /* No timer routines for IntegratorAP/CM720T as yet */
308 #else
309 #error Timer routines not defined for this CPU type
310 #endif