Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | /* |
Douglas Raillard | 21362a9 | 2016-12-02 13:51:54 +0000 | [diff] [blame] | 2 | * Copyright (c) 2013-2017, ARM Limited and Contributors. All rights reserved. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
Dan Handley | ed6ff95 | 2014-05-14 17:44:19 +0100 | [diff] [blame] | 7 | #include <platform_def.h> |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 8 | |
| 9 | OUTPUT_FORMAT(PLATFORM_LINKER_FORMAT) |
| 10 | OUTPUT_ARCH(PLATFORM_LINKER_ARCH) |
Jeenu Viswambharan | 2a30a75 | 2014-03-11 11:06:45 +0000 | [diff] [blame] | 11 | ENTRY(bl2_entrypoint) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 12 | |
| 13 | MEMORY { |
Juan Castillo | fd8c077 | 2014-09-16 10:40:35 +0100 | [diff] [blame] | 14 | RAM (rwx): ORIGIN = BL2_BASE, LENGTH = BL2_LIMIT - BL2_BASE |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 15 | } |
| 16 | |
| 17 | |
| 18 | SECTIONS |
| 19 | { |
| 20 | . = BL2_BASE; |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 21 | ASSERT(. == ALIGN(4096), |
| 22 | "BL2_BASE address is not aligned on a page boundary.") |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 23 | |
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 24 | #if SEPARATE_CODE_AND_RODATA |
| 25 | .text . : { |
| 26 | __TEXT_START__ = .; |
| 27 | *bl2_entrypoint.o(.text*) |
| 28 | *(.text*) |
| 29 | *(.vectors) |
| 30 | . = NEXT(4096); |
| 31 | __TEXT_END__ = .; |
| 32 | } >RAM |
| 33 | |
| 34 | .rodata . : { |
| 35 | __RODATA_START__ = .; |
| 36 | *(.rodata*) |
| 37 | |
| 38 | /* Ensure 8-byte alignment for descriptors and ensure inclusion */ |
| 39 | . = ALIGN(8); |
| 40 | __PARSER_LIB_DESCS_START__ = .; |
| 41 | KEEP(*(.img_parser_lib_descs)) |
| 42 | __PARSER_LIB_DESCS_END__ = .; |
| 43 | |
| 44 | . = NEXT(4096); |
| 45 | __RODATA_END__ = .; |
| 46 | } >RAM |
| 47 | #else |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 48 | ro . : { |
| 49 | __RO_START__ = .; |
Andrew Thoelke | e01ea34 | 2014-03-18 07:13:52 +0000 | [diff] [blame] | 50 | *bl2_entrypoint.o(.text*) |
| 51 | *(.text*) |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 52 | *(.rodata*) |
Juan Castillo | 8e55d93 | 2015-04-02 09:48:16 +0100 | [diff] [blame] | 53 | |
| 54 | /* Ensure 8-byte alignment for descriptors and ensure inclusion */ |
| 55 | . = ALIGN(8); |
| 56 | __PARSER_LIB_DESCS_START__ = .; |
| 57 | KEEP(*(.img_parser_lib_descs)) |
| 58 | __PARSER_LIB_DESCS_END__ = .; |
| 59 | |
Achin Gupta | b739f22 | 2014-01-18 16:50:09 +0000 | [diff] [blame] | 60 | *(.vectors) |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 61 | __RO_END_UNALIGNED__ = .; |
| 62 | /* |
| 63 | * Memory page(s) mapped to this section will be marked as |
| 64 | * read-only, executable. No RW data from the next section must |
| 65 | * creep in. Ensure the rest of the current memory page is unused. |
| 66 | */ |
| 67 | . = NEXT(4096); |
| 68 | __RO_END__ = .; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 69 | } >RAM |
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 70 | #endif |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 71 | |
Achin Gupta | e9c4a64 | 2015-09-11 16:03:13 +0100 | [diff] [blame] | 72 | /* |
| 73 | * Define a linker symbol to mark start of the RW memory area for this |
| 74 | * image. |
| 75 | */ |
| 76 | __RW_START__ = . ; |
| 77 | |
Douglas Raillard | 306593d | 2017-02-24 18:14:15 +0000 | [diff] [blame] | 78 | /* |
| 79 | * .data must be placed at a lower address than the stacks if the stack |
| 80 | * protector is enabled. Alternatively, the .data.stack_protector_canary |
| 81 | * section can be placed independently of the main .data section. |
| 82 | */ |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 83 | .data . : { |
| 84 | __DATA_START__ = .; |
Andrew Thoelke | e01ea34 | 2014-03-18 07:13:52 +0000 | [diff] [blame] | 85 | *(.data*) |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 86 | __DATA_END__ = .; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 87 | } >RAM |
| 88 | |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 89 | stacks (NOLOAD) : { |
| 90 | __STACKS_START__ = .; |
| 91 | *(tzfw_normal_stacks) |
| 92 | __STACKS_END__ = .; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 93 | } >RAM |
| 94 | |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 95 | /* |
| 96 | * The .bss section gets initialised to 0 at runtime. |
Douglas Raillard | 21362a9 | 2016-12-02 13:51:54 +0000 | [diff] [blame] | 97 | * Its base address should be 16-byte aligned for better performance of the |
| 98 | * zero-initialization code. |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 99 | */ |
| 100 | .bss : ALIGN(16) { |
| 101 | __BSS_START__ = .; |
Andrew Thoelke | e01ea34 | 2014-03-18 07:13:52 +0000 | [diff] [blame] | 102 | *(SORT_BY_ALIGNMENT(.bss*)) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 103 | *(COMMON) |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 104 | __BSS_END__ = .; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 105 | } >RAM |
| 106 | |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 107 | /* |
Jeenu Viswambharan | 97cc9ee | 2014-02-24 15:20:28 +0000 | [diff] [blame] | 108 | * The xlat_table section is for full, aligned page tables (4K). |
Achin Gupta | a0cd989 | 2014-02-09 13:30:38 +0000 | [diff] [blame] | 109 | * Removing them from .bss avoids forcing 4K alignment on |
| 110 | * the .bss section and eliminates the unecessary zero init |
| 111 | */ |
| 112 | xlat_table (NOLOAD) : { |
| 113 | *(xlat_table) |
| 114 | } >RAM |
| 115 | |
Soby Mathew | 2ae2043 | 2015-01-08 18:02:44 +0000 | [diff] [blame] | 116 | #if USE_COHERENT_MEM |
Achin Gupta | a0cd989 | 2014-02-09 13:30:38 +0000 | [diff] [blame] | 117 | /* |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 118 | * The base address of the coherent memory section must be page-aligned (4K) |
| 119 | * to guarantee that the coherent data are stored on their own pages and |
| 120 | * are not mixed with normal data. This is required to set up the correct |
| 121 | * memory attributes for the coherent data page tables. |
| 122 | */ |
| 123 | coherent_ram (NOLOAD) : ALIGN(4096) { |
| 124 | __COHERENT_RAM_START__ = .; |
| 125 | *(tzfw_coherent_mem) |
| 126 | __COHERENT_RAM_END_UNALIGNED__ = .; |
| 127 | /* |
| 128 | * Memory page(s) mapped to this section will be marked |
| 129 | * as device memory. No other unexpected data must creep in. |
| 130 | * Ensure the rest of the current memory page is unused. |
| 131 | */ |
| 132 | . = NEXT(4096); |
| 133 | __COHERENT_RAM_END__ = .; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 134 | } >RAM |
Soby Mathew | 2ae2043 | 2015-01-08 18:02:44 +0000 | [diff] [blame] | 135 | #endif |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 136 | |
Achin Gupta | e9c4a64 | 2015-09-11 16:03:13 +0100 | [diff] [blame] | 137 | /* |
| 138 | * Define a linker symbol to mark end of the RW memory area for this |
| 139 | * image. |
| 140 | */ |
| 141 | __RW_END__ = .; |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 142 | __BL2_END__ = .; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 143 | |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 144 | __BSS_SIZE__ = SIZEOF(.bss); |
Soby Mathew | 2ae2043 | 2015-01-08 18:02:44 +0000 | [diff] [blame] | 145 | |
| 146 | #if USE_COHERENT_MEM |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 147 | __COHERENT_RAM_UNALIGNED_SIZE__ = |
| 148 | __COHERENT_RAM_END_UNALIGNED__ - __COHERENT_RAM_START__; |
Soby Mathew | 2ae2043 | 2015-01-08 18:02:44 +0000 | [diff] [blame] | 149 | #endif |
Sandrine Bailleux | 6c8b359 | 2014-05-22 15:28:26 +0100 | [diff] [blame] | 150 | |
| 151 | ASSERT(. <= BL2_LIMIT, "BL2 image has exceeded its limit.") |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 152 | } |