]> git.baikalelectronics.ru Git - arm-tf.git/commit
refactor(trf): enable FEAT_TRF for FEAT_STATE_CHECKED
authorAndre Przywara <andre.przywara@arm.com>
Thu, 17 Nov 2022 17:30:43 +0000 (17:30 +0000)
committerAndre Przywara <andre.przywara@arm.com>
Mon, 27 Feb 2023 18:04:14 +0000 (18:04 +0000)
commitfc8d2d3980352f92cf378155c1f4449b4a0ab4c0
tree5e089155937a527962ad8cc71b0a89ec180a2526
parentff491036603c34bd80137f5fd43878eae5585197
refactor(trf): enable FEAT_TRF for FEAT_STATE_CHECKED

At the moment we only support FEAT_TRF to be either unconditionally
compiled in, or to be not supported at all.

Add support for runtime detection (ENABLE_TRF_FOR_NS=2), by splitting
is_feat_trf_present() into an ID register reading function and a second
function to report the support status. That function considers both
build time settings and runtime information (if needed), and is used
before we access TRF related registers.
Also move the context saving code from assembly to C, and use the new
is_feat_trf_supported() function to guard its execution.

The FVP platform decided to compile in support unconditionally (=1),
even though FEAT_TRF is an ARMv8.4 feature, so 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: Ia97b01adbe24970a4d837afd463dc5506b7295a3
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
13 files changed:
bl31/bl31.mk
bl32/sp_min/sp_min.mk
common/feat_detect.c
include/arch/aarch32/arch_features.h
include/arch/aarch64/arch_features.h
include/arch/aarch64/arch_helpers.h
include/lib/el3_runtime/aarch64/context.h
lib/el3_runtime/aarch32/context_mgmt.c
lib/el3_runtime/aarch64/context.S
lib/el3_runtime/aarch64/context_mgmt.c
lib/extensions/trf/aarch32/trf.c
lib/extensions/trf/aarch64/trf.c
plat/arm/board/fvp/platform.mk