Jean-Christophe PLAGNIOL-VILLARD | 8000a5a | 2009-06-23 00:12:01 +0200 | [diff] [blame] | 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 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 13 | * SPDX-License-Identifier: GPL-2.0+ |
Jean-Christophe PLAGNIOL-VILLARD | 8000a5a | 2009-06-23 00:12:01 +0200 | [diff] [blame] | 14 | */ |
| 15 | |
| 16 | #include <common.h> |
| 17 | |
kevin.morfitt@fearnside-systems.co.uk | e0d8131 | 2009-11-17 18:30:34 +0900 | [diff] [blame] | 18 | #include <asm/arch/s3c24x0_cpu.h> |
Jean-Christophe PLAGNIOL-VILLARD | 8000a5a | 2009-06-23 00:12:01 +0200 | [diff] [blame] | 19 | #include <asm/proc-armv/ptrace.h> |
| 20 | |
| 21 | void do_irq (struct pt_regs *pt_regs) |
| 22 | { |
kevin.morfitt@fearnside-systems.co.uk | d1cacc7 | 2009-10-10 13:30:22 +0900 | [diff] [blame] | 23 | struct s3c24x0_interrupt *irq = s3c24x0_get_base_interrupt(); |
| 24 | u_int32_t intpnd = readl(&irq->INTPND); |
Jean-Christophe PLAGNIOL-VILLARD | 8000a5a | 2009-06-23 00:12:01 +0200 | [diff] [blame] | 25 | |
| 26 | } |