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 | vector_entry SynchronousExceptionSP0 |
| 16 | b . |
| 17 | vector_entry IrqSP0 |
| 18 | b . |
| 19 | vector_entry FiqSP0 |
| 20 | b . |
| 21 | vector_entry SErrorSP0 |
| 22 | b . |
| 23 | vector_entry SynchronousExceptionSPx |
| 24 | b . |
| 25 | vector_entry IrqSPx |
| 26 | b . |
| 27 | vector_entry FiqSPx |
| 28 | b . |
| 29 | vector_entry SErrorSPx |
| 30 | b . |
| 31 | vector_entry SynchronousExceptionA64 |
| 32 | b . |
| 33 | vector_entry IrqA64 |
| 34 | b . |
| 35 | vector_entry FiqA64 |
| 36 | b . |
| 37 | vector_entry SErrorA64 |
| 38 | b . |
| 39 | vector_entry SynchronousExceptionA32 |
| 40 | b . |
| 41 | vector_entry IrqA32 |
| 42 | b . |
| 43 | vector_entry FiqA32 |
| 44 | b . |
| 45 | vector_entry SErrorA32 |
| 46 | b . |