]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/cpu/arm920t/s3c24x0/interrupts.c
arm: Move cpu/$CPU to arch/arm/cpu/$CPU
[people/ms/u-boot.git] / arch / arm / cpu / arm920t / s3c24x0 / interrupts.c
CommitLineData
8d460a57
JCPV
1/*
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
11 * Gary Jennejohn, DENX Software Engineering, <gj@denx.de>
12 *
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>
33
ac67804f 34#include <asm/arch/s3c24x0_cpu.h>
8d460a57
JCPV
35#include <asm/proc-armv/ptrace.h>
36
37void do_irq (struct pt_regs *pt_regs)
38{
d67cce2d 39 struct s3c24x0_interrupt *irq = s3c24x0_get_base_interrupt();
40 u_int32_t intpnd = readl(&irq->INTPND);
8d460a57
JCPV
41
42}