Andre Przywara | 6228e43 | 2020-09-16 17:13:33 +0100 | [diff] [blame] | 1 | /* |
Chris Kay | 33bfc5e | 2023-02-14 11:30:04 +0000 | [diff] [blame] | 2 | * Copyright (c) 2023, Arm Limited. All rights reserved. |
Andre Przywara | 6228e43 | 2020-09-16 17:13:33 +0100 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | * |
| 6 | * Linker script for the Arm Ltd. FPGA boards to generate an ELF file that |
| 7 | * contains the ROM trampoline, BL31 and the DTB. |
| 8 | * |
| 9 | * This allows to pass just one file to the uploader tool, and automatically |
| 10 | * provides the correct load addresses. |
| 11 | */ |
| 12 | |
| 13 | #include <platform_def.h> |
| 14 | |
| 15 | OUTPUT_FORMAT("elf64-littleaarch64") |
| 16 | OUTPUT_ARCH(aarch64) |
| 17 | |
Andre Przywara | 6228e43 | 2020-09-16 17:13:33 +0100 | [diff] [blame] | 18 | INPUT(./rom_trampoline.o) |
Andre Przywara | 8c6d92d | 2021-05-14 16:13:28 +0100 | [diff] [blame] | 19 | INPUT(./kernel_trampoline.o) |
Andre Przywara | 6228e43 | 2020-09-16 17:13:33 +0100 | [diff] [blame] | 20 | |
| 21 | TARGET(binary) |
Andre Przywara | d805797 | 2021-11-04 13:47:17 +0000 | [diff] [blame] | 22 | INPUT(./bl31.bin) |
Andre Przywara | 6228e43 | 2020-09-16 17:13:33 +0100 | [diff] [blame] | 23 | INPUT(./fdts/arm_fpga.dtb) |
| 24 | |
| 25 | ENTRY(_start) |
| 26 | |
| 27 | SECTIONS |
| 28 | { |
| 29 | .rom (0x0): { |
| 30 | *rom_trampoline.o(.text*) |
| 31 | KEEP(*(.rom)) |
| 32 | } |
| 33 | |
| 34 | .bl31 (BL31_BASE): { |
| 35 | ASSERT(. == ALIGN(PAGE_SIZE), "BL31_BASE is not page aligned"); |
Andre Przywara | d805797 | 2021-11-04 13:47:17 +0000 | [diff] [blame] | 36 | *bl31.bin |
Andre Przywara | 6228e43 | 2020-09-16 17:13:33 +0100 | [diff] [blame] | 37 | } |
| 38 | |
| 39 | .dtb (FPGA_PRELOADED_DTB_BASE): { |
| 40 | ASSERT(. == ALIGN(8), "DTB address is not 8-byte aligned"); |
| 41 | *arm_fpga.dtb |
| 42 | } |
| 43 | |
Andre Przywara | 8c6d92d | 2021-05-14 16:13:28 +0100 | [diff] [blame] | 44 | .kern_tramp (PRELOADED_BL33_BASE): { |
| 45 | *kernel_trampoline.o(.text*) |
| 46 | KEEP(*(.kern_tramp)) |
| 47 | } |
| 48 | |
Chris Kay | 33bfc5e | 2023-02-14 11:30:04 +0000 | [diff] [blame] | 49 | /DISCARD/ : { *(.stacks) } |
Andre Przywara | 6228e43 | 2020-09-16 17:13:33 +0100 | [diff] [blame] | 50 | /DISCARD/ : { *(.debug_*) } |
| 51 | /DISCARD/ : { *(.note*) } |
| 52 | /DISCARD/ : { *(.comment*) } |
| 53 | } |