diff options
author | Sandrine Bailleux <sandrine.bailleux@arm.com> | 2013-11-27 09:38:52 +0000 |
---|---|---|
committer | Dan Handley <dan.handley@arm.com> | 2013-12-05 11:33:15 +0000 |
commit | 8d69a03f6a7db3c437b7cfdd15402627277d8cb4 (patch) | |
tree | a74ad7b72757ed85d084bf50ce20feb4164c2eb6 /plat/fvp/bl2_plat_setup.c | |
parent | 3e850a84c94a5f1bc0141041ad32be94460716f7 (diff) | |
download | arm-trusted-firmware-8d69a03f6a7db3c437b7cfdd15402627277d8cb4.tar.gz |
Various improvements/cleanups on the linker scripts
- Check at link-time that bootloader images will fit in memory
at run time and that they won't overlap each other.
- Remove text and rodata orphan sections.
- Define new linker symbols to remove the need for platform setup
code to know the order of sections.
- Reduce the size of the raw binary images by cutting some sections
out of the disk image and allocating them at load time, whenever
possible.
- Rework alignment constraints on sections.
- Remove unused linker symbols.
- Homogenize linker symbols names across all BLs.
- Add some comments in the linker scripts.
Change-Id: I47a328af0ccc7c8ab47fcc0dc6e7dd26160610b9
Diffstat (limited to 'plat/fvp/bl2_plat_setup.c')
-rw-r--r-- | plat/fvp/bl2_plat_setup.c | 42 |
1 files changed, 26 insertions, 16 deletions
diff --git a/plat/fvp/bl2_plat_setup.c b/plat/fvp/bl2_plat_setup.c index 4fdef8b..bb3b45a 100644 --- a/plat/fvp/bl2_plat_setup.c +++ b/plat/fvp/bl2_plat_setup.c @@ -39,20 +39,30 @@ * Declarations of linker defined symbols which will help us find the layout * of trusted SRAM ******************************************************************************/ -#if defined (__GNUC__) -extern unsigned long __BL2_RO_BASE__; -extern unsigned long __BL2_STACKS_BASE__; -extern unsigned long __BL2_COHERENT_RAM_BASE__; -extern unsigned long __BL2_RW_BASE__; +extern unsigned long __RO_START__; +extern unsigned long __RO_END__; -#define BL2_RO_BASE __BL2_RO_BASE__ -#define BL2_STACKS_BASE __BL2_STACKS_BASE__ -#define BL2_COHERENT_RAM_BASE __BL2_COHERENT_RAM_BASE__ -#define BL2_RW_BASE __BL2_RW_BASE__ +extern unsigned long __COHERENT_RAM_START__; +extern unsigned long __COHERENT_RAM_END__; -#else - #error "Unknown compiler." -#endif +/* + * The next 2 constants identify the extents of the code & RO data region. + * These addresses are used by the MMU setup code and therefore they must be + * page-aligned. It is the responsibility of the linker script to ensure that + * __RO_START__ and __RO_END__ linker symbols refer to page-aligned addresses. + */ +#define BL2_RO_BASE (unsigned long)(&__RO_START__) +#define BL2_RO_LIMIT (unsigned long)(&__RO_END__) + +/* + * The next 2 constants identify the extents of the coherent memory region. + * These addresses are used by the MMU setup code and therefore they must be + * page-aligned. It is the responsibility of the linker script to ensure that + * __COHERENT_RAM_START__ and __COHERENT_RAM_END__ linker symbols refer to + * page-aligned addresses. + */ +#define BL2_COHERENT_RAM_BASE (unsigned long)(&__COHERENT_RAM_START__) +#define BL2_COHERENT_RAM_LIMIT (unsigned long)(&__COHERENT_RAM_END__) /* Pointer to memory visible to both BL2 and BL31 for passing data */ extern unsigned char **bl2_el_change_mem_ptr; @@ -106,8 +116,8 @@ void bl2_platform_setup() void bl2_plat_arch_setup() { configure_mmu(&bl2_tzram_layout, - (unsigned long) &BL2_RO_BASE, - (unsigned long) &BL2_STACKS_BASE, - (unsigned long) &BL2_COHERENT_RAM_BASE, - (unsigned long) &BL2_RW_BASE); + BL2_RO_BASE, + BL2_RO_LIMIT, + BL2_COHERENT_RAM_BASE, + BL2_COHERENT_RAM_LIMIT); } |