mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 10:04:26 +00:00

At the moment we only support access to the trace unit by system registers (SYS_REG_TRACE) to be either unconditionally compiled in, or to be not supported at all. Add support for runtime detection (ENABLE_SYS_REG_TRACE_FOR_NS=2), by adding is_feat_sys_reg_trace_supported(). That function considers both build time settings and runtime information (if needed), and is used before we access SYS_REG_TRACE related registers. The FVP platform decided to compile in support unconditionally (=1), even though this is an optional feature, so it is not available with the FVP model's default command line. Change that to the now supported dynamic option (=2), so the right decision can be made by the code at runtime. Change-Id: I450a574a4f6bd9fc269887037049c94c906f54b2 Signed-off-by: Andre Przywara <andre.przywara@arm.com>
26 lines
685 B
C
26 lines
685 B
C
/*
|
|
* Copyright (c) 2021, Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <arch.h>
|
|
#include <arch_helpers.h>
|
|
#include <lib/extensions/sys_reg_trace.h>
|
|
|
|
void sys_reg_trace_enable(cpu_context_t *ctx)
|
|
{
|
|
uint64_t val;
|
|
|
|
/* Retrieve CPTR_EL3 value from the given context 'ctx',
|
|
* and update CPTR_EL3.TTA bit to 0.
|
|
* This function is called while switching context to NS to
|
|
* allow system trace register access to NS-EL2 and NS-EL1
|
|
* when NS-EL2 is implemented but not used.
|
|
*/
|
|
val = read_ctx_reg(get_el3state_ctx(ctx), CTX_CPTR_EL3);
|
|
val &= ~TTA_BIT;
|
|
write_ctx_reg(get_el3state_ctx(ctx), CTX_CPTR_EL3, val);
|
|
}
|