Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 1 | /* |
Yann Gautier | c142587 | 2019-02-15 16:42:20 +0100 | [diff] [blame] | 2 | * Copyright (c) 2017-2022, ARM Limited and Contributors. All rights reserved. |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
| 7 | #include <arch.h> |
| 8 | #include <asm_macros.S> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 9 | #include <common/bl_common.h> |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 10 | |
| 11 | .globl bl2_vector_table |
| 12 | |
| 13 | vector_base bl2_vector_table |
| 14 | b bl2_entrypoint |
| 15 | b report_exception /* Undef */ |
| 16 | b report_exception /* SVC call */ |
Yann Gautier | c142587 | 2019-02-15 16:42:20 +0100 | [diff] [blame] | 17 | b report_prefetch_abort /* Prefetch abort */ |
| 18 | b report_data_abort /* Data abort */ |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 19 | b report_exception /* Reserved */ |
| 20 | b report_exception /* IRQ */ |
| 21 | b report_exception /* FIQ */ |