arm-trusted-firmware/include/plat
Alexei Fedorov fa1fdb223c plat/arm: Reduce size of BL31 binary
BL31 binary size is aligned to 4KB because of the
code in include\plat\arm\common\arm_reclaim_init.ld.S:
    __INIT_CODE_UNALIGNED__ = .;
    . = ALIGN(PAGE_SIZE);
    __INIT_CODE_END__ = .;
with all the zero data after the last instruction of
BL31 code to the end of the page.
This causes increase in size of BL31 binary stored in FIP
and its loading time by BL2.
This patch reduces the size of BL31 image by moving
page alignment from __INIT_CODE_END__ to __STACKS_END__
which also increases the stack size for secondary CPUs.

Change-Id: Ie2ec503fc774c22c12ec506d74fd3ef2b0b183a9
Signed-off-by: Alexei Fedorov <Alexei.Fedorov@arm.com>
2020-08-10 10:40:35 +00:00
..
arm plat/arm: Reduce size of BL31 binary 2020-08-10 10:40:35 +00:00
brcm/common Add BL2 support for Broadcom stingray platform 2020-04-03 17:12:42 +05:30
common SMCCC: Introduce function to check SMCCC function availability 2020-07-26 08:16:29 +01:00
marvell/armada plat: marvell: armada: a8k: add OP-TEE OS MMU tables 2020-06-19 18:20:22 +02:00