blob: eaa258261189be18ccbb4a80207bbc45f1fc5a53 [file] [log] [blame]
Roberto Vargase0e99462017-10-30 14:43:43 +00001/*
Yann Gautierc1425872019-02-15 16:42:20 +01002 * Copyright (c) 2017-2022, ARM Limited and Contributors. All rights reserved.
Roberto Vargase0e99462017-10-30 14:43:43 +00003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <arch.h>
8#include <asm_macros.S>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00009#include <common/bl_common.h>
Roberto Vargase0e99462017-10-30 14:43:43 +000010
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 */
Yann Gautierc1425872019-02-15 16:42:20 +010017 b report_prefetch_abort /* Prefetch abort */
18 b report_data_abort /* Data abort */
Roberto Vargase0e99462017-10-30 14:43:43 +000019 b report_exception /* Reserved */
20 b report_exception /* IRQ */
21 b report_exception /* FIQ */