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