mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 10:04:26 +00:00

Some of our specialized sections are not prefixed with the conventional period. The compiler uses input section names to derive certain other section names (e.g. `.rela.text`, `.relacpu_ops`), and these can be difficult to select in linker scripts when there is a lack of a delimiter. This change introduces the period prefix to all specialized section names. BREAKING-CHANGE: All input and output linker section names have been prefixed with the period character, e.g. `cpu_ops` -> `.cpu_ops`. Change-Id: I51c13c5266d5975fbd944ef4961328e72f82fc1c Signed-off-by: Chris Kay <chris.kay@arm.com>
43 lines
1.1 KiB
ArmAsm
43 lines
1.1 KiB
ArmAsm
/*
|
|
* Copyright (c) 2017-2023, Arm Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
#ifndef ARM_RECLAIM_INIT_LD_S
|
|
#define ARM_RECLAIM_INIT_LD_S
|
|
|
|
SECTIONS
|
|
{
|
|
.init __STACKS_START__ : {
|
|
. = . + PLATFORM_STACK_SIZE;
|
|
. = ALIGN(PAGE_SIZE);
|
|
__INIT_CODE_START__ = .;
|
|
*(*text.init.*);
|
|
__INIT_CODE_END__ = .;
|
|
INIT_CODE_END_ALIGNED = ALIGN(PAGE_SIZE);
|
|
} >RAM
|
|
|
|
#ifdef BL31_PROGBITS_LIMIT
|
|
ASSERT(__INIT_CODE_END__ <= BL31_PROGBITS_LIMIT,
|
|
"BL31 init has exceeded progbits limit.")
|
|
#endif
|
|
}
|
|
|
|
#define ABS ABSOLUTE
|
|
|
|
#define STACK_SECTION \
|
|
.stacks (NOLOAD) : { \
|
|
__STACKS_START__ = .; \
|
|
*(.tzfw_normal_stacks) \
|
|
__STACKS_END__ = .; \
|
|
/* Allow room for the init section where necessary. */ \
|
|
OFFSET = ABS(SIZEOF(.init) - (. - __STACKS_START__)); \
|
|
/* Offset sign */ \
|
|
SIGN = ABS(OFFSET) & (1 << 63); \
|
|
/* Offset mask */ \
|
|
MASK = ABS(SIGN >> 63) - 1; \
|
|
. += ABS(OFFSET) & ABS(MASK); \
|
|
. = ALIGN(PAGE_SIZE); \
|
|
}
|
|
|
|
#endif /* ARM_RECLAIM_INIT_LD_S */
|