blob: 3d63430c2b45d1280c599c2ea908eafc802eaf1c [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Alexey Brodkin7a5f30d2015-02-19 18:40:58 +03002/*
3 * Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved.
Alexey Brodkin7a5f30d2015-02-19 18:40:58 +03004 */
5
6.section .ivt, "ax",@progbits
7.align 4
8_ivt:
9 /* Critical system events */
10 j _start /* 0 - 0x000 */
11 j memory_error /* 1 - 0x008 */
12 j instruction_error /* 2 - 0x010 */
13
14 /* Device interrupts */
15.rept 29
16 j interrupt_handler /* 3:31 - 0x018:0xF8 */
17.endr
18 /* Exceptions */
19 j EV_MachineCheck /* 0x100, Fatal Machine check (0x20) */
20 j EV_TLBMissI /* 0x108, Intruction TLB miss (0x21) */
21 j EV_TLBMissD /* 0x110, Data TLB miss (0x22) */
22 j EV_TLBProtV /* 0x118, Protection Violation (0x23)
23 or Misaligned Access */
24 j EV_PrivilegeV /* 0x120, Privilege Violation (0x24) */
25 j EV_Trap /* 0x128, Trap exception (0x25) */
26 j EV_Extension /* 0x130, Extn Intruction Excp (0x26) */