aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJohn Tsichritzis <john.tsichritzis@arm.com>2018-09-03 15:06:44 +0100
committerJohn Tsichritzis <john.tsichritzis@arm.com>2018-09-04 10:32:22 +0100
commit37574c5669fd10f164b24a365e6e369b85dc4de2 (patch)
treebcd85a05458a7866bc7d3ca34acc4c344820c16f /include
parentba597da7fd23d34e8867342f1dfee7925991300c (diff)
downloadplatform_external_arm-trusted-firmware-37574c5669fd10f164b24a365e6e369b85dc4de2.tar.gz
platform_external_arm-trusted-firmware-37574c5669fd10f164b24a365e6e369b85dc4de2.tar.bz2
platform_external_arm-trusted-firmware-37574c5669fd10f164b24a365e6e369b85dc4de2.zip
Reduce BL2 size for FVP
This patch reduces BL2 size by 12kB. Thanks to the shared Mbed TLS heap between BL1 and BL2, BL2 now requires less memory since it doesn't need to allocate a heap anymore. Change-Id: I58a15f8c424273650c9f55112abe88105b6cdbae Signed-off-by: John Tsichritzis <john.tsichritzis@arm.com>
Diffstat (limited to 'include')
-rw-r--r--include/plat/arm/board/common/board_arm_def.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/plat/arm/board/common/board_arm_def.h b/include/plat/arm/board/common/board_arm_def.h
index a388ed9ac..86c85123e 100644
--- a/include/plat/arm/board/common/board_arm_def.h
+++ b/include/plat/arm/board/common/board_arm_def.h
@@ -102,7 +102,7 @@
* little space for growth.
*/
#if TRUSTED_BOARD_BOOT
-# define PLAT_ARM_MAX_BL2_SIZE 0x1F000
+# define PLAT_ARM_MAX_BL2_SIZE 0x1C000
#else
# define PLAT_ARM_MAX_BL2_SIZE 0x11000
#endif