Sandrine Bailleux | 3cd87d7 | 2018-10-09 11:12:55 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2018, Arm Limited. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
| 7 | #include <asm_macros.S> |
| 8 | |
| 9 | /* |
| 10 | * Simplistic exceptions vector table. |
| 11 | * All entries spin, which means all types of exceptions are unrecoverable. |
| 12 | */ |
| 13 | .global exception_stubs |
| 14 | vector_base exception_stubs |
| 15 | b . /* Not used */ |
| 16 | b . /* Undef */ |
| 17 | b . /* Syscall */ |
| 18 | b . /* Prefetch abort */ |
| 19 | b . /* Data abort */ |
| 20 | b . /* Hyp trap */ |
| 21 | b . /* IRQ */ |
| 22 | b . /* FIQ */ |