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

Currently, EL3 context registers are duplicated per-world per-cpu. Some registers have the same value across all CPUs, so this patch moves these registers out into a per-world context to reduce memory usage. Change-Id: I91294e3d5f4af21a58c23599af2bdbd2a747c54a Signed-off-by: Elizabeth Ho <elizabeth.ho@arm.com> Signed-off-by: Jayanth Dodderi Chidanand <jayanthdodderi.chidanand@arm.com>
45 lines
1.2 KiB
C
45 lines
1.2 KiB
C
/*
|
|
* Copyright (c) 2021-2023, 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_per_world(per_world_context_t *per_world_ctx)
|
|
{
|
|
/*
|
|
* CPTR_EL3.TTA: Set to zero so that System register accesses to the
|
|
* trace registers do not trap to EL3.
|
|
*/
|
|
uint64_t val = per_world_ctx->ctx_cptr_el3;
|
|
val &= ~(TTA_BIT);
|
|
per_world_ctx->ctx_cptr_el3 = val;
|
|
}
|
|
|
|
void sys_reg_trace_disable_per_world(per_world_context_t *per_world_ctx)
|
|
{
|
|
/*
|
|
* CPTR_EL3.TTA: Set to one so that System register accesses to the
|
|
* trace registers trap to EL3, unless it is trapped by CPACR.TRCDIS,
|
|
* CPACR_EL1.TTA, or CPTR_EL2.TTA
|
|
*/
|
|
uint64_t val = per_world_ctx->ctx_cptr_el3;
|
|
val |= TTA_BIT;
|
|
per_world_ctx->ctx_cptr_el3 = val;
|
|
}
|
|
|
|
void sys_reg_trace_init_el2_unused(void)
|
|
{
|
|
/*
|
|
* CPTR_EL2.TTA: Set to zero so that Non-secure System register accesses
|
|
* to the trace registers from both Execution states do not trap to
|
|
* EL2. If PE trace unit System registers are not implemented then this
|
|
* bit is reserved, and must be set to zero.
|
|
*/
|
|
write_cptr_el2(read_cptr_el2() & ~CPTR_EL2_TTA_BIT);
|
|
}
|