xref: /aosp_15_r20/external/arm-trusted-firmware/bl2/aarch32/bl2_el3_exceptions.S (revision 54fd6939e177f8ff529b10183254802c76df6d08)
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