1/* 2 * Copyright (c) 2017-2022, ARM Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7#include <arch.h> 8#include <asm_macros.S> 9#include <common/bl_common.h> 10 11 .globl bl2_vector_table 12 13vector_base bl2_vector_table 14 b bl2_entrypoint 15 b report_exception /* Undef */ 16 b report_exception /* SVC call */ 17 b report_prefetch_abort /* Prefetch abort */ 18 b report_data_abort /* Data abort */ 19 b report_exception /* Reserved */ 20 b report_exception /* IRQ */ 21 b report_exception /* FIQ */ 22