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
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2002-11-03 00:24:07 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2008-01-14 09:06:52 +00:00
|
|
|
#include <asm/proc-armv/ptrace.h>
|
2009-06-22 22:12:01 +00:00
|
|
|
|
2009-06-22 22:12:01 +00:00
|
|
|
#if defined (CONFIG_ARCH_INTEGRATOR)
|
2002-11-03 00:24:07 +00:00
|
|
|
void do_irq (struct pt_regs *pt_regs)
|
|
|
|
{
|
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;
|
2002-11-03 00:24:07 +00:00
|
|
|
}
|
2009-06-22 22:12:01 +00:00
|
|
|
#endif
|