diff options
author | Soby Mathew <soby.mathew@arm.com> | 2020-01-27 17:01:07 +0000 |
---|---|---|
committer | TrustedFirmware Code Review <review@review.trustedfirmware.org> | 2020-01-27 17:01:07 +0000 |
commit | 0281e60c3d59d7552a589ecae1b1223b9dededd1 (patch) | |
tree | 44f29826e8c125f780b240da7ebad61def7440a7 /include/common | |
parent | 432e9ee243409ea9a823e617942aed18853ca31f (diff) | |
parent | 7af2131787ed1e5a4fea17f17d13967d13f7d9ee (diff) | |
download | platform_external_arm-trusted-firmware-0281e60c3d59d7552a589ecae1b1223b9dededd1.tar.gz platform_external_arm-trusted-firmware-0281e60c3d59d7552a589ecae1b1223b9dededd1.tar.bz2 platform_external_arm-trusted-firmware-0281e60c3d59d7552a589ecae1b1223b9dededd1.zip |
Merge changes from topic "pie" into integration
* changes:
uniphier: make all BL images completely position-independent
uniphier: make uniphier_mmap_setup() work with PIE
uniphier: pass SCP base address as a function parameter
uniphier: set buffer offset and length for io_block dynamically
uniphier: use more mmap_add_dynamic_region() for loading images
bl_common: add BL_END macro
uniphier: turn on ENABLE_PIE
TSP: add PIE support
BL2_AT_EL3: add PIE support
BL31: discard .dynsym .dynstr .hash sections to make ENABLE_PIE work
PIE: pass PIE options only to BL31
Build: support per-BL LDFLAGS
Diffstat (limited to 'include/common')
-rw-r--r-- | include/common/bl_common.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/common/bl_common.h b/include/common/bl_common.h index 896a03f0a..77fb1f679 100644 --- a/include/common/bl_common.h +++ b/include/common/bl_common.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2019, ARM Limited and Contributors. All rights reserved. + * Copyright (c) 2013-2020, ARM Limited and Contributors. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ @@ -106,6 +106,7 @@ IMPORT_SYM(uintptr_t, __RODATA_END__, BL_RO_DATA_END); IMPORT_SYM(uintptr_t, __RO_START__, BL_CODE_BASE); IMPORT_SYM(uintptr_t, __RO_END__, BL_CODE_END); #endif +IMPORT_SYM(uintptr_t, __RW_END__, BL_END); #if defined(IMAGE_BL1) IMPORT_SYM(uintptr_t, __BL1_ROM_END__, BL1_ROM_END); |