diff options
author | Daniel Boulby <daniel.boulby@arm.com> | 2018-09-18 11:45:51 +0100 |
---|---|---|
committer | Antonio Nino Diaz <antonio.ninodiaz@arm.com> | 2018-10-03 11:47:30 +0100 |
commit | 1dcc28cfbac5dae3992ad9581f9ea68f6cb339c1 (patch) | |
tree | 91ba202cfe45aad728e50842fd248238fdd72ec5 /make_helpers | |
parent | 1a4b46d5836d766ba6092206119be030f54462dd (diff) | |
download | platform_external_arm-trusted-firmware-1dcc28cfbac5dae3992ad9581f9ea68f6cb339c1.tar.gz platform_external_arm-trusted-firmware-1dcc28cfbac5dae3992ad9581f9ea68f6cb339c1.tar.bz2 platform_external_arm-trusted-firmware-1dcc28cfbac5dae3992ad9581f9ea68f6cb339c1.zip |
Introduce RECLAIM_INIT_CODE build flag
This patch introduces a build flag "RECLAIM_INIT_CODE" to mark boot time
code which allows platforms to place this memory in an appropriate
section to be reclaimed later. This features is primarily targeted for
BL31. Appropriate documentation updates are also done.
Change-Id: If0ca062851614805d769c332c771083d46599194
Signed-off-by: Daniel Boulby <daniel.boulby@arm.com>
Diffstat (limited to 'make_helpers')
-rw-r--r-- | make_helpers/defaults.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/make_helpers/defaults.mk b/make_helpers/defaults.mk index 7df4cd286..435de20e3 100644 --- a/make_helpers/defaults.mk +++ b/make_helpers/defaults.mk @@ -146,6 +146,10 @@ SDEI_SUPPORT := 0 # platform Makefile is free to override this value. SEPARATE_CODE_AND_RODATA := 0 +# If the BL31 image initialisation code is recalimed after use for the secondary +# cores stack +RECLAIM_INIT_CODE := 0 + # Default to SMCCC Version 1.X SMCCC_MAJOR_VERSION := 1 |