blob: cde6b007c12d728ee8b1593b72b208724501f7ed [file] [log] [blame]
Dan Handley9df48042015-03-19 18:58:55 +00001/*
2 * Copyright (c) 2015, ARM Limited and Contributors. All rights reserved.
3 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Dan Handley9df48042015-03-19 18:58:55 +00005 */
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00006
Dan Handley9df48042015-03-19 18:58:55 +00007#include <asm_macros.S>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00008#include <common/bl_common.h>
Antonio Nino Diaza320ecd2019-01-15 14:19:50 +00009#include <platform_def.h>
Dan Handley9df48042015-03-19 18:58:55 +000010
11 .globl plat_report_exception
12
13
14 /* ---------------------------------------------
15 * void plat_report_exception(unsigned int type)
16 * Function to report an unhandled exception
17 * with platform-specific means.
18 * On FVP platform, it updates the LEDs
19 * to indicate where we are
20 * ---------------------------------------------
21 */
22func plat_report_exception
23 mrs x1, CurrentEl
24 lsr x1, x1, #MODE_EL_SHIFT
25 lsl x1, x1, #V2M_SYS_LED_EL_SHIFT
26 lsl x0, x0, #V2M_SYS_LED_EC_SHIFT
27 mov x2, #(SECURE << V2M_SYS_LED_SS_SHIFT)
28 orr x0, x0, x2
29 orr x0, x0, x1
30 mov x1, #V2M_SYSREGS_BASE
31 add x1, x1, #V2M_SYS_LED
32 str w0, [x1]
33 ret
34endfunc plat_report_exception