diff options
author | Alexei Fedorov <Alexei.Fedorov@arm.com> | 2020-03-03 13:31:58 +0000 |
---|---|---|
committer | Alexei Fedorov <Alexei.Fedorov@arm.com> | 2020-03-06 14:17:35 +0000 |
commit | b4292bc65eafcd36ad72d4301c12461184579bb6 (patch) | |
tree | ff7037d0b086423a4b9606647dfee5f20154e8d1 /include/common | |
parent | 03ea84c345e990cc6a188fbed508985461278cbb (diff) | |
download | platform_external_arm-trusted-firmware-b4292bc65eafcd36ad72d4301c12461184579bb6.tar.gz platform_external_arm-trusted-firmware-b4292bc65eafcd36ad72d4301c12461184579bb6.tar.bz2 platform_external_arm-trusted-firmware-b4292bc65eafcd36ad72d4301c12461184579bb6.zip |
Fix crash dump for lower EL
This patch provides a fix for incorrect crash dump data for
lower EL when TF-A is built with HANDLE_EA_EL3_FIRST=1 option
which enables routing of External Aborts and SErrors to EL3.
Change-Id: I9d5e6775e6aad21db5b78362da6c3a3d897df977
Signed-off-by: Alexei Fedorov <Alexei.Fedorov@arm.com>
Diffstat (limited to 'include/common')
-rw-r--r-- | include/common/debug.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/common/debug.h b/include/common/debug.h index 245e69865..9aef15b51 100644 --- a/include/common/debug.h +++ b/include/common/debug.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved. + * Copyright (c) 2013-2020, ARM Limited and Contributors. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ @@ -91,6 +91,7 @@ #if ENABLE_BACKTRACE void backtrace(const char *cookie); +const char *get_el_str(unsigned int el); #else #define backtrace(x) #endif |