Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Graeme Russ | e56d397 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 2 | /* |
3 | * (C) Copyright 2002 | ||||
Albert ARIBAUD | 60fbc8d | 2011-08-04 18:45:45 +0200 | [diff] [blame] | 4 | * Daniel Engström, Omicron Ceti AB, daniel@omicron.se. |
Graeme Russ | e56d397 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 5 | */ |
6 | |||||
Graeme Russ | c5881f1 | 2011-04-13 19:43:25 +1000 | [diff] [blame] | 7 | #include <config.h> |
Graeme Russ | e56d397 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 8 | OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386") |
9 | OUTPUT_ARCH(i386) | ||||
10 | ENTRY(_start) | ||||
11 | |||||
12 | SECTIONS | ||||
13 | { | ||||
Simon Glass | 72cc538 | 2022-10-20 18:22:39 -0600 | [diff] [blame] | 14 | . = CONFIG_TEXT_BASE; /* Location of bootcode in flash */ |
Graeme Russ | ae428db | 2010-10-07 20:03:31 +1100 | [diff] [blame] | 15 | __text_start = .; |
Alexander Graf | 94a10f2 | 2018-06-12 07:48:37 +0200 | [diff] [blame] | 16 | |
17 | .text.start : { *(.text.start); } | ||||
18 | |||||
19 | .__efi_runtime_start : { | ||||
20 | *(.__efi_runtime_start) | ||||
21 | } | ||||
22 | |||||
23 | .efi_runtime : { | ||||
24 | *(.text.efi_runtime*) | ||||
25 | *(.rodata.efi_runtime*) | ||||
26 | *(.data.efi_runtime*) | ||||
27 | } | ||||
28 | |||||
29 | .__efi_runtime_stop : { | ||||
30 | *(.__efi_runtime_stop) | ||||
31 | } | ||||
32 | |||||
Graeme Russ | fb4e2be | 2010-10-07 20:03:32 +1100 | [diff] [blame] | 33 | .text : { *(.text*); } |
Graeme Russ | e56d397 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 34 | |
35 | . = ALIGN(4); | ||||
Graeme Russ | 078395c | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 36 | |
Graeme Russ | 078395c | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 37 | . = ALIGN(4); |
Andrew Scull | 5a9095c | 2022-05-30 10:00:04 +0000 | [diff] [blame] | 38 | __u_boot_list : { |
39 | KEEP(*(SORT(__u_boot_list*))); | ||||
Marek Vasut | 607092a | 2012-10-12 10:27:03 +0000 | [diff] [blame] | 40 | } |
41 | |||||
42 | . = ALIGN(4); | ||||
Simon Glass | cdfe696 | 2016-09-25 15:27:35 -0600 | [diff] [blame] | 43 | .rodata : { |
44 | *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) | ||||
45 | KEEP(*(.rodata.efi.init)); | ||||
46 | } | ||||
Graeme Russ | 078395c | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 47 | |
Graeme Russ | 078395c | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 48 | . = ALIGN(4); |
Graeme Russ | fb4e2be | 2010-10-07 20:03:32 +1100 | [diff] [blame] | 49 | .data : { *(.data*) } |
Graeme Russ | e56d397 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 50 | |
Graeme Russ | 078395c | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 51 | . = ALIGN(4); |
Graeme Russ | fb4e2be | 2010-10-07 20:03:32 +1100 | [diff] [blame] | 52 | .hash : { *(.hash*) } |
Graeme Russ | e56d397 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 53 | |
54 | . = ALIGN(4); | ||||
Graeme Russ | fb4e2be | 2010-10-07 20:03:32 +1100 | [diff] [blame] | 55 | .got : { *(.got*) } |
Graeme Russ | e56d397 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 56 | |
57 | . = ALIGN(4); | ||||
Simon Glass | cdfe696 | 2016-09-25 15:27:35 -0600 | [diff] [blame] | 58 | |
Simon Glass | cdfe696 | 2016-09-25 15:27:35 -0600 | [diff] [blame] | 59 | .efi_runtime_rel_start : |
60 | { | ||||
61 | *(.__efi_runtime_rel_start) | ||||
62 | } | ||||
63 | |||||
64 | .efi_runtime_rel : { | ||||
Alexander Graf | 94a10f2 | 2018-06-12 07:48:37 +0200 | [diff] [blame] | 65 | *(.rel*.efi_runtime) |
66 | *(.rel*.efi_runtime.*) | ||||
Simon Glass | cdfe696 | 2016-09-25 15:27:35 -0600 | [diff] [blame] | 67 | } |
68 | |||||
69 | .efi_runtime_rel_stop : | ||||
70 | { | ||||
71 | *(.__efi_runtime_rel_stop) | ||||
72 | } | ||||
73 | |||||
74 | . = ALIGN(4); | ||||
75 | |||||
Graeme Russ | fb4e2be | 2010-10-07 20:03:32 +1100 | [diff] [blame] | 76 | __data_end = .; |
Simon Glass | 3e93e33 | 2013-03-05 14:39:54 +0000 | [diff] [blame] | 77 | __init_end = .; |
Graeme Russ | 078395c | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 78 | |
Graeme Russ | 078395c | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 79 | . = ALIGN(4); |
Simon Glass | 18cc2bc | 2013-02-28 19:26:14 +0000 | [diff] [blame] | 80 | .dynsym : { *(.dynsym*) } |
Graeme Russ | 078395c | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 81 | |
Graeme Russ | 078395c | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 82 | . = ALIGN(4); |
Graeme Russ | ae428db | 2010-10-07 20:03:31 +1100 | [diff] [blame] | 83 | __rel_dyn_start = .; |
Simon Glass | 1eb8ebc | 2014-11-14 18:18:24 -0700 | [diff] [blame] | 84 | .rel.dyn : { |
85 | *(.rel*) | ||||
86 | } | ||||
Graeme Russ | ae428db | 2010-10-07 20:03:31 +1100 | [diff] [blame] | 87 | __rel_dyn_end = .; |
Simon Glass | 781db8c | 2013-02-28 19:26:13 +0000 | [diff] [blame] | 88 | . = ALIGN(4); |
89 | _end = .; | ||||
Graeme Russ | e56d397 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 90 | |
Simon Glass | 18cc2bc | 2013-02-28 19:26:14 +0000 | [diff] [blame] | 91 | .bss __rel_dyn_start (OVERLAY) : { |
92 | __bss_start = .; | ||||
Alexander Graf | 61c7678 | 2018-08-20 14:17:41 +0200 | [diff] [blame] | 93 | *(.bss*) |
Simon Glass | 18cc2bc | 2013-02-28 19:26:14 +0000 | [diff] [blame] | 94 | *(COM*) |
95 | . = ALIGN(4); | ||||
96 | __bss_end = .; | ||||
97 | } | ||||
98 | |||||
Graeme Russ | fb4e2be | 2010-10-07 20:03:32 +1100 | [diff] [blame] | 99 | /DISCARD/ : { *(.dynstr*) } |
100 | /DISCARD/ : { *(.dynamic*) } | ||||
101 | /DISCARD/ : { *(.plt*) } | ||||
102 | /DISCARD/ : { *(.interp*) } | ||||
103 | /DISCARD/ : { *(.gnu*) } | ||||
Bin Meng | 3eb15f5 | 2021-06-18 15:09:30 +0800 | [diff] [blame] | 104 | /DISCARD/ : { *(.note.gnu.property) } |
Graeme Russ | e56d397 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 105 | |
Simon Glass | 706f6f5 | 2017-01-16 07:03:45 -0700 | [diff] [blame] | 106 | #ifdef CONFIG_X86_16BIT_INIT |
Graeme Russ | 3fe4860 | 2011-02-12 15:11:24 +1100 | [diff] [blame] | 107 | /* |
108 | * The following expressions place the 16-bit Real-Mode code and | ||||
109 | * Reset Vector at the end of the Flash ROM | ||||
Graeme Russ | e56d397 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 110 | */ |
Simon Glass | 20ec253 | 2014-11-14 18:18:25 -0700 | [diff] [blame] | 111 | . = START_16 - RESET_SEG_START; |
112 | .start16 : AT (START_16) { | ||||
113 | KEEP(*(.start16)); | ||||
114 | } | ||||
Graeme Russ | e56d397 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 115 | |
Simon Glass | 20ec253 | 2014-11-14 18:18:25 -0700 | [diff] [blame] | 116 | . = RESET_VEC_LOC - RESET_SEG_START; |
117 | .resetvec : AT (RESET_VEC_LOC) { | ||||
118 | KEEP(*(.resetvec)); | ||||
119 | } | ||||
Gabe Black | 14f8246 | 2012-11-27 21:08:06 +0000 | [diff] [blame] | 120 | #endif |
Simon Glass | 20ec253 | 2014-11-14 18:18:25 -0700 | [diff] [blame] | 121 | |
Graeme Russ | e56d397 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 122 | } |