blob: 11ddf371fec6f597e5b7219f988a7a0c784ec32a [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>
9#include <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_exception /* Prefetch abort */
18 b report_exception /* Data abort */
19 b report_exception /* Reserved */
20 b report_exception /* IRQ */
21 b report_exception /* FIQ */