blob: 087b6656dc64813c849ed7ca219ffe96c8b6ee50 [file] [log] [blame]
Roberto Vargase0e99462017-10-30 14:43:43 +00001/*
2 * Copyright (c) 2017, 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>
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 */
17 b report_exception /* Prefetch abort */
18 b report_exception /* Data abort */
19 b report_exception /* Reserved */
20 b report_exception /* IRQ */
21 b report_exception /* FIQ */