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