blob: 561083ec73e3d04303fcf8a6b844e648f6160dd9 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
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 * (C) Copyright 2002
Detlev Zundel792a09e2009-05-13 10:54:10 +020011 * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
wdenkc6097192002-11-03 00:24:07 +000012 *
13 * See file CREDITS for list of people who contributed to this
14 * project.
15 *
16 * This program is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU General Public License as
18 * published by the Free Software Foundation; either version 2 of
19 * the License, or (at your option) any later version.
20 *
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
25 *
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the Free Software
28 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
29 * MA 02111-1307 USA
30 */
31
32#include <common.h>
Andreas Engel6d0943a2008-01-14 09:06:52 +000033#include <asm/proc-armv/ptrace.h>
Jean-Christophe PLAGNIOL-VILLARD798bf9a2009-06-23 00:12:01 +020034
Jean-Christophe PLAGNIOL-VILLARD8d460a52009-06-23 00:12:01 +020035#if defined (CONFIG_ARCH_INTEGRATOR)
wdenkc6097192002-11-03 00:24:07 +000036void do_irq (struct pt_regs *pt_regs)
37{
Wolfgang Denk74f43042005-09-25 01:48:28 +020038 /* ASSUMED to be a timer interrupt */
39 /* Just clear it - count handled in */
40 /* integratorap.c */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020041 *(volatile ulong *)(CONFIG_SYS_TIMERBASE + 0x0C) = 0;
wdenkc6097192002-11-03 00:24:07 +000042}
Jean-Christophe PLAGNIOL-VILLARD8d460a52009-06-23 00:12:01 +020043#endif