2002-11-03 00:24:07 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2002
|
|
|
|
* Sysgo Real-Time Solutions, GmbH <www.elinos.com>
|
|
|
|
* Marius Groeger <mgroeger@sysgo.de>
|
|
|
|
*
|
|
|
|
* (C) Copyright 2002
|
|
|
|
* Sysgo Real-Time Solutions, GmbH <www.elinos.com>
|
|
|
|
* Alex Zuepke <azu@sysgo.de>
|
|
|
|
*
|
|
|
|
* (C) Copyright 2002
|
2009-05-13 08:54:10 +00:00
|
|
|
* Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
|
2002-11-03 00:24:07 +00:00
|
|
|
*
|
|
|
|
* See file CREDITS for list of people who contributed to this
|
|
|
|
* project.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
|
|
|
|
#ifdef CONFIG_USE_IRQ
|
2008-01-14 09:06:52 +00:00
|
|
|
#include <asm/proc-armv/ptrace.h>
|
2002-11-03 00:24:07 +00:00
|
|
|
void do_irq (struct pt_regs *pt_regs)
|
|
|
|
{
|
2007-12-19 13:19:38 +00:00
|
|
|
#if defined (ARM920_IRQ_CALLBACK)
|
|
|
|
ARM920_IRQ_CALLBACK();
|
|
|
|
#elif defined (CONFIG_ARCH_INTEGRATOR)
|
2005-09-24 23:48:28 +00:00
|
|
|
/* ASSUMED to be a timer interrupt */
|
|
|
|
/* Just clear it - count handled in */
|
|
|
|
/* integratorap.c */
|
2008-10-16 13:01:15 +00:00
|
|
|
*(volatile ulong *)(CONFIG_SYS_TIMERBASE + 0x0C) = 0;
|
2005-09-24 23:48:28 +00:00
|
|
|
#else
|
2008-01-14 09:06:52 +00:00
|
|
|
#error do_irq() not defined for this cpu type
|
2005-09-24 23:48:28 +00:00
|
|
|
#endif
|
2002-11-03 00:24:07 +00:00
|
|
|
}
|
2008-01-14 09:06:52 +00:00
|
|
|
#endif
|