blob: 036e3b906c3a1a4f6c36fd828220938984f3db4a [file] [log] [blame]
Jean-Christophe PLAGNIOL-VILLARD8000a5a2009-06-23 00:12:01 +02001/*
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 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +020013 * SPDX-License-Identifier: GPL-2.0+
Jean-Christophe PLAGNIOL-VILLARD8000a5a2009-06-23 00:12:01 +020014 */
15
16#include <common.h>
17
kevin.morfitt@fearnside-systems.co.uke0d81312009-11-17 18:30:34 +090018#include <asm/arch/s3c24x0_cpu.h>
Jean-Christophe PLAGNIOL-VILLARD8000a5a2009-06-23 00:12:01 +020019#include <asm/proc-armv/ptrace.h>
20
21void do_irq (struct pt_regs *pt_regs)
22{
kevin.morfitt@fearnside-systems.co.ukd1cacc72009-10-10 13:30:22 +090023 struct s3c24x0_interrupt *irq = s3c24x0_get_base_interrupt();
24 u_int32_t intpnd = readl(&irq->INTPND);
Jean-Christophe PLAGNIOL-VILLARD8000a5a2009-06-23 00:12:01 +020025
26}