Sandrine Bailleux | 3cd87d7 | 2018-10-09 11:12:55 +0200 | [diff] [blame] | 1 | /* |
Ruari Phipps | 9f1952c | 2020-08-24 11:32:32 +0100 | [diff] [blame] | 2 | * Copyright (c) 2018-2021, Arm Limited. All rights reserved. |
Sandrine Bailleux | 3cd87d7 | 2018-10-09 11:12:55 +0200 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
| 7 | #include <asm_macros.S> |
| 8 | |
Sandrine Bailleux | 80ddcc3 | 2019-01-11 19:01:22 +0100 | [diff] [blame] | 9 | .global exception_stubs |
| 10 | |
Sandrine Bailleux | 3cd87d7 | 2018-10-09 11:12:55 +0200 | [diff] [blame] | 11 | /* |
| 12 | * Simplistic exceptions vector table. |
| 13 | * All entries spin, which means all types of exceptions are unrecoverable. |
| 14 | */ |
Sandrine Bailleux | 80ddcc3 | 2019-01-11 19:01:22 +0100 | [diff] [blame] | 15 | |
Sandrine Bailleux | 3cd87d7 | 2018-10-09 11:12:55 +0200 | [diff] [blame] | 16 | vector_base exception_stubs |
Daniel Boulby | 08798ac | 2021-04-06 14:30:19 +0100 | [diff] [blame] | 17 | vector_entry_spin sync_exception_sp_el0 |
| 18 | vector_entry_spin irq_sp_el0 |
| 19 | vector_entry_spin fiq_sp_el0 |
| 20 | vector_entry_spin serror_sp_el0 |
| 21 | vector_entry_spin sync_exception_sp_elx |
| 22 | vector_entry_spin irq_sp_elx |
| 23 | vector_entry_spin fiq_sp_elx |
| 24 | vector_entry_spin serror_sp_elx |
| 25 | vector_entry_spin sync_exception_aarch64 |
| 26 | vector_entry_spin irq_aarch64 |
| 27 | vector_entry_spin fiq_aarch64 |
| 28 | vector_entry_spin serror_aarch64 |
| 29 | vector_entry_spin sync_exception_aarch32 |
| 30 | vector_entry_spin irq_aarch32 |
| 31 | vector_entry_spin fiq_aarch32 |
| 32 | vector_entry_spin serror_aarch32 |