Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Graeme Russ | c620c01 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 2 | /* |
3 | * (C) Copyright 2002 | ||||
Albert ARIBAUD | fa82f87 | 2011-08-04 18:45:45 +0200 | [diff] [blame] | 4 | * Daniel Engström, Omicron Ceti AB, daniel@omicron.se. |
Graeme Russ | c620c01 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 5 | */ |
6 | |||||
Graeme Russ | e413554 | 2011-04-13 19:43:25 +1000 | [diff] [blame] | 7 | #include <config.h> |
Graeme Russ | c620c01 | 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 | c135211 | 2016-03-13 19:07:29 -0600 | [diff] [blame] | 14 | #ifndef CONFIG_CMDLINE |
15 | /DISCARD/ : { *(.u_boot_list_2_cmd_*) } | ||||
16 | #endif | ||||
17 | |||||
Wolfgang Denk | c8d76ea | 2010-10-18 23:43:37 +0200 | [diff] [blame] | 18 | . = CONFIG_SYS_TEXT_BASE; /* Location of bootcode in flash */ |
Graeme Russ | 067f9b1 | 2010-10-07 20:03:31 +1100 | [diff] [blame] | 19 | __text_start = .; |
Alexander Graf | 7e21fbc | 2018-06-12 07:48:37 +0200 | [diff] [blame] | 20 | |
21 | .text.start : { *(.text.start); } | ||||
22 | |||||
23 | .__efi_runtime_start : { | ||||
24 | *(.__efi_runtime_start) | ||||
25 | } | ||||
26 | |||||
27 | .efi_runtime : { | ||||
28 | *(.text.efi_runtime*) | ||||
29 | *(.rodata.efi_runtime*) | ||||
30 | *(.data.efi_runtime*) | ||||
31 | } | ||||
32 | |||||
33 | .__efi_runtime_stop : { | ||||
34 | *(.__efi_runtime_stop) | ||||
35 | } | ||||
36 | |||||
Graeme Russ | 2219142 | 2010-10-07 20:03:32 +1100 | [diff] [blame] | 37 | .text : { *(.text*); } |
Graeme Russ | c620c01 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 38 | |
39 | . = ALIGN(4); | ||||
Graeme Russ | c620c01 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 40 | |
Graeme Russ | 2219142 | 2010-10-07 20:03:32 +1100 | [diff] [blame] | 41 | . = ALIGN(4); |
Marek Vasut | 5567514 | 2012-10-12 10:27:03 +0000 | [diff] [blame] | 42 | .u_boot_list : { |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 43 | KEEP(*(SORT(.u_boot_list*))); |
Marek Vasut | 5567514 | 2012-10-12 10:27:03 +0000 | [diff] [blame] | 44 | } |
45 | |||||
46 | . = ALIGN(4); | ||||
Simon Glass | 65e4c0b | 2016-09-25 15:27:35 -0600 | [diff] [blame] | 47 | .rodata : { |
48 | *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) | ||||
49 | KEEP(*(.rodata.efi.init)); | ||||
50 | } | ||||
Graeme Russ | 2219142 | 2010-10-07 20:03:32 +1100 | [diff] [blame] | 51 | |
52 | . = ALIGN(4); | ||||
53 | .data : { *(.data*) } | ||||
54 | |||||
55 | . = ALIGN(4); | ||||
Graeme Russ | 2219142 | 2010-10-07 20:03:32 +1100 | [diff] [blame] | 56 | .hash : { *(.hash*) } |
57 | |||||
58 | . = ALIGN(4); | ||||
59 | .got : { *(.got*) } | ||||
60 | |||||
61 | . = ALIGN(4); | ||||
Simon Glass | 65e4c0b | 2016-09-25 15:27:35 -0600 | [diff] [blame] | 62 | |
Simon Glass | 65e4c0b | 2016-09-25 15:27:35 -0600 | [diff] [blame] | 63 | .efi_runtime_rel_start : |
64 | { | ||||
65 | *(.__efi_runtime_rel_start) | ||||
66 | } | ||||
67 | |||||
68 | .efi_runtime_rel : { | ||||
Alexander Graf | 7e21fbc | 2018-06-12 07:48:37 +0200 | [diff] [blame] | 69 | *(.rel*.efi_runtime) |
70 | *(.rel*.efi_runtime.*) | ||||
Simon Glass | 65e4c0b | 2016-09-25 15:27:35 -0600 | [diff] [blame] | 71 | } |
72 | |||||
73 | .efi_runtime_rel_stop : | ||||
74 | { | ||||
75 | *(.__efi_runtime_rel_stop) | ||||
76 | } | ||||
77 | |||||
78 | . = ALIGN(4); | ||||
79 | |||||
Graeme Russ | 2219142 | 2010-10-07 20:03:32 +1100 | [diff] [blame] | 80 | __data_end = .; |
Simon Glass | 86cfb6b | 2013-03-05 14:39:54 +0000 | [diff] [blame] | 81 | __init_end = .; |
Graeme Russ | c620c01 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 82 | |
83 | . = ALIGN(4); | ||||
Simon Glass | f82d15e | 2013-02-28 19:26:14 +0000 | [diff] [blame] | 84 | .dynsym : { *(.dynsym*) } |
Graeme Russ | c620c01 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 85 | |
Graeme Russ | 2219142 | 2010-10-07 20:03:32 +1100 | [diff] [blame] | 86 | . = ALIGN(4); |
87 | __rel_dyn_start = .; | ||||
Simon Glass | 091c494 | 2014-11-14 18:18:24 -0700 | [diff] [blame] | 88 | .rel.dyn : { |
89 | *(.rel*) | ||||
90 | } | ||||
Graeme Russ | 2219142 | 2010-10-07 20:03:32 +1100 | [diff] [blame] | 91 | __rel_dyn_end = .; |
Simon Glass | 4b491b8 | 2013-02-28 19:26:13 +0000 | [diff] [blame] | 92 | . = ALIGN(4); |
93 | _end = .; | ||||
Graeme Russ | 2219142 | 2010-10-07 20:03:32 +1100 | [diff] [blame] | 94 | |
Simon Glass | f82d15e | 2013-02-28 19:26:14 +0000 | [diff] [blame] | 95 | .bss __rel_dyn_start (OVERLAY) : { |
96 | __bss_start = .; | ||||
Alexander Graf | 6331cb2 | 2018-08-20 14:17:41 +0200 | [diff] [blame] | 97 | *(.bss*) |
Simon Glass | f82d15e | 2013-02-28 19:26:14 +0000 | [diff] [blame] | 98 | *(COM*) |
99 | . = ALIGN(4); | ||||
100 | __bss_end = .; | ||||
101 | } | ||||
102 | |||||
Graeme Russ | 2219142 | 2010-10-07 20:03:32 +1100 | [diff] [blame] | 103 | /DISCARD/ : { *(.dynstr*) } |
104 | /DISCARD/ : { *(.dynamic*) } | ||||
105 | /DISCARD/ : { *(.plt*) } | ||||
106 | /DISCARD/ : { *(.interp*) } | ||||
107 | /DISCARD/ : { *(.gnu*) } | ||||
108 | |||||
Simon Glass | 972188b | 2017-01-16 07:03:45 -0700 | [diff] [blame] | 109 | #ifdef CONFIG_X86_16BIT_INIT |
Graeme Russ | 3a25e94 | 2011-02-12 15:11:24 +1100 | [diff] [blame] | 110 | /* |
111 | * The following expressions place the 16-bit Real-Mode code and | ||||
112 | * Reset Vector at the end of the Flash ROM | ||||
Graeme Russ | c620c01 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 113 | */ |
Simon Glass | a6a9578 | 2014-11-14 18:18:25 -0700 | [diff] [blame] | 114 | . = START_16 - RESET_SEG_START; |
115 | .start16 : AT (START_16) { | ||||
116 | KEEP(*(.start16)); | ||||
117 | } | ||||
Graeme Russ | c620c01 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 118 | |
Simon Glass | a6a9578 | 2014-11-14 18:18:25 -0700 | [diff] [blame] | 119 | . = RESET_VEC_LOC - RESET_SEG_START; |
120 | .resetvec : AT (RESET_VEC_LOC) { | ||||
121 | KEEP(*(.resetvec)); | ||||
122 | } | ||||
Gabe Black | b16f521 | 2012-11-27 21:08:06 +0000 | [diff] [blame] | 123 | #endif |
Simon Glass | a6a9578 | 2014-11-14 18:18:25 -0700 | [diff] [blame] | 124 | |
Graeme Russ | c620c01 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 125 | } |