wdenk | 6f21347 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 1 | /* |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 2 | * (C) Copyright 2003 |
| 3 | * Texas Instruments <www.ti.com> |
| 4 | * |
wdenk | 6f21347 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 5 | * (C) Copyright 2002 |
| 6 | * Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 7 | * Marius Groeger <mgroeger@sysgo.de> |
| 8 | * |
| 9 | * (C) Copyright 2002 |
| 10 | * Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 11 | * Alex Zuepke <azu@sysgo.de> |
| 12 | * |
wdenk | 3d3befa | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 13 | * (C) Copyright 2002-2004 |
wdenk | 6f21347 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 14 | * Gary Jennejohn, DENX Software Engineering, <gj@denx.de> |
| 15 | * |
wdenk | 3d3befa | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 16 | * (C) Copyright 2004 |
| 17 | * Philippe Robin, ARM Ltd. <philippe.robin@arm.com> |
| 18 | * |
wdenk | 6f21347 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 19 | * See file CREDITS for list of people who contributed to this |
| 20 | * project. |
| 21 | * |
| 22 | * This program is free software; you can redistribute it and/or |
| 23 | * modify it under the terms of the GNU General Public License as |
| 24 | * published by the Free Software Foundation; either version 2 of |
| 25 | * the License, or (at your option) any later version. |
| 26 | * |
| 27 | * This program is distributed in the hope that it will be useful, |
| 28 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
wdenk | 101e8df | 2005-04-04 12:08:28 +0000 | [diff] [blame] | 29 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
wdenk | 6f21347 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 30 | * GNU General Public License for more details. |
| 31 | * |
| 32 | * You should have received a copy of the GNU General Public License |
| 33 | * along with this program; if not, write to the Free Software |
| 34 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 35 | * MA 02111-1307 USA |
| 36 | */ |
| 37 | |
| 38 | #include <common.h> |
Wolfgang Denk | 74f4304 | 2005-09-25 01:48:28 +0200 | [diff] [blame] | 39 | #include <arm926ejs.h> |
wdenk | 6f21347 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 40 | |
Stelian Pop | 61106a5 | 2008-03-26 21:52:27 +0100 | [diff] [blame] | 41 | #ifdef CONFIG_INTEGRATOR |
Wolfgang Denk | 74f4304 | 2005-09-25 01:48:28 +0200 | [diff] [blame] | 42 | |
| 43 | /* Timer functionality supplied by Integrator board (AP or CP) */ |
| 44 | |
| 45 | #else |
| 46 | |
wdenk | 6f21347 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 47 | /* nothing really to do with interrupts, just starts up a counter. */ |
| 48 | int interrupt_init (void) |
| 49 | { |
Wolfgang Denk | ff7fefe | 2006-03-13 12:37:35 +0100 | [diff] [blame] | 50 | extern void timer_init(void); |
wdenk | 6f21347 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 51 | |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 52 | timer_init(); |
Wolfgang Denk | 74f4304 | 2005-09-25 01:48:28 +0200 | [diff] [blame] | 53 | |
Wolfgang Denk | ff7fefe | 2006-03-13 12:37:35 +0100 | [diff] [blame] | 54 | return 0; |
wdenk | 6f21347 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 55 | } |
Wolfgang Denk | 74f4304 | 2005-09-25 01:48:28 +0200 | [diff] [blame] | 56 | |
| 57 | #endif /* CONFIG_INTEGRATOR */ |