add SDHC support in mmc driver
[u-boot-openmoko/mini2440.git] / cpu / arm926ejs / interrupts.c
blob1819f6b0787963ab3309be2c9992d8b0bbdaf03c
1 /*
2 * (C) Copyright 2003
3 * Texas Instruments <www.ti.com>
5 * (C) Copyright 2002
6 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
7 * Marius Groeger <mgroeger@sysgo.de>
9 * (C) Copyright 2002
10 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
11 * Alex Zuepke <azu@sysgo.de>
13 * (C) Copyright 2002-2004
14 * Gary Jennejohn, DENX Software Engineering, <gj@denx.de>
16 * (C) Copyright 2004
17 * Philippe Robin, ARM Ltd. <philippe.robin@arm.com>
19 * See file CREDITS for list of people who contributed to this
20 * project.
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.
27 * This program is distributed in the hope that it will be useful,
28 * but WITHOUT ANY WARRANTY; without even the implied warranty of
29 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
30 * GNU General Public License for more details.
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
38 #include <common.h>
39 #include <arm926ejs.h>
41 #ifdef CONFIG_INTEGRATOR
43 /* Timer functionality supplied by Integrator board (AP or CP) */
45 #else
47 /* nothing really to do with interrupts, just starts up a counter. */
48 int interrupt_init (void)
50 extern void timer_init(void);
52 timer_init();
54 return 0;
57 #endif /* CONFIG_INTEGRATOR */