aboutsummaryrefslogtreecommitdiffstats
path: root/make_helpers
diff options
context:
space:
mode:
authorJavier Almansa Sobrino <javier.almansasobrino@arm.com>2020-11-23 18:38:15 +0000
committerJavier Almansa Sobrino <javier.almansasobrino@arm.com>2020-12-11 12:49:20 +0000
commit0063dd1708e67e5d36168caaf2a0df383bbe1455 (patch)
treed6297557e50a6c6c4672f78b37efa649f4439c74 /make_helpers
parent852e494075d92199e9bddfe92d364f2107a5a25d (diff)
downloadplatform_external_arm-trusted-firmware-0063dd1708e67e5d36168caaf2a0df383bbe1455.tar.gz
platform_external_arm-trusted-firmware-0063dd1708e67e5d36168caaf2a0df383bbe1455.tar.bz2
platform_external_arm-trusted-firmware-0063dd1708e67e5d36168caaf2a0df383bbe1455.zip
Add support for FEAT_MTPMU for Armv8.6
If FEAT_PMUv3 is implemented and PMEVTYPER<n>(_EL0).MT bit is implemented as well, it is possible to control whether PMU counters take into account events happening on other threads. If FEAT_MTPMU is implemented, EL3 (or EL2) can override the MT bit leaving it to effective state of 0 regardless of any write to it. This patch introduces the DISABLE_MTPMU flag, which allows to diable multithread event count from EL3 (or EL2). The flag is disabled by default so the behavior is consistent with those architectures that do not implement FEAT_MTPMU. Signed-off-by: Javier Almansa Sobrino <javier.almansasobrino@arm.com> Change-Id: Iee3a8470ae8ba13316af1bd40c8d4aa86e0cb85e
Diffstat (limited to 'make_helpers')
-rw-r--r--make_helpers/defaults.mk4
1 files changed, 4 insertions, 0 deletions
diff --git a/make_helpers/defaults.mk b/make_helpers/defaults.mk
index 578bd5987..f69a73ea6 100644
--- a/make_helpers/defaults.mk
+++ b/make_helpers/defaults.mk
@@ -79,6 +79,10 @@ DEFAULT_PLAT := fvp
# Disable the generation of the binary image (ELF only).
DISABLE_BIN_GENERATION := 0
+# Disable MTPMU if FEAT_MTPMU is supported. Default is 0 to keep backwards
+# compatibility.
+DISABLE_MTPMU := 0
+
# Enable capability to disable authentication dynamically. Only meant for
# development platforms.
DYN_DISABLE_AUTH := 0