]> git.sur5r.net Git - u-boot/blob - arch/arm/cpu/arm720t/interrupts.c
352d55dd151f093cff0a1dc610d57fdb1f5c98c2
[u-boot] / arch / arm / cpu / arm720t / interrupts.c
1 /*
2  * (C) Copyright 2002
3  * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
4  * Marius Groeger <mgroeger@sysgo.de>
5  *
6  * (C) Copyright 2002
7  * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
8  * Alex Zuepke <azu@sysgo.de>
9  *
10  * See file CREDITS for list of people who contributed to this
11  * project.
12  *
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.
17  *
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.
22  *
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
27  */
28
29 #include <common.h>
30 #include <asm/proc-armv/ptrace.h>
31 #include <asm/hardware.h>
32
33 /* we always count down the max. */
34 #define TIMER_LOAD_VAL 0xffff
35 /* macro to read the 16 bit timer */
36 #define READ_TIMER (IO_TC1D & 0xffff)
37
38 #ifdef CONFIG_USE_IRQ
39 void do_irq (struct pt_regs *pt_regs)
40 {
41 #if defined(CONFIG_INTEGRATOR) && defined(CONFIG_ARCH_INTEGRATOR)
42         /* No do_irq() for IntegratorAP/CM720T as yet */
43 #else
44 #error do_irq() not defined for this CPU type
45 #endif
46 }
47 #endif
48
49 #if defined(CONFIG_INTEGRATOR) && defined(CONFIG_ARCH_INTEGRATOR)
50         /* Use IntegratorAP routines in board/integratorap.c */
51 #else
52
53 static ulong timestamp;
54 static ulong lastdec;
55
56 int timer_init (void)
57 {
58 #if defined(CONFIG_TEGRA)
59         /* No timer routines for tegra as yet */
60         lastdec = 0;
61 #else
62 #error No timer_init() defined for this CPU type
63 #endif
64         timestamp = 0;
65
66         return (0);
67 }
68
69 #endif /* ! IntegratorAP */
70
71 /*
72  * timer without interrupts
73  */
74
75
76 #if defined(CONFIG_INTEGRATOR) && defined(CONFIG_ARCH_INTEGRATOR)
77         /* No timer routines for IntegratorAP/CM720T as yet */
78 #elif defined(CONFIG_TEGRA)
79         /* No timer routines for tegra as yet */
80 #else
81 #error Timer routines not defined for this CPU type
82 #endif