blob: c5b4f7ce5e9e4091a1d7d51e40ac9969a5a3b8c3 [file] [log] [blame]
Albert ARIBAUD65cdd642013-02-25 00:58:58 +00001/*
2 * Copyright (c) 2004-2008 Texas Instruments
3 *
4 * (C) Copyright 2002
5 * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
6 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Albert ARIBAUD65cdd642013-02-25 00:58:58 +00008 */
9
10OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
11OUTPUT_ARCH(arm)
12ENTRY(_start)
13SECTIONS
14{
15 . = 0x00000000;
16
17 . = ALIGN(4);
18 .text :
19 {
20 __image_copy_start = .;
Albert ARIBAUD41623c92014-04-15 16:13:51 +020021 *(.vectors)
Albert ARIBAUD65cdd642013-02-25 00:58:58 +000022 CPUDIR/start.o (.text*)
23 *(.text*)
24 }
25
26 . = ALIGN(4);
27 .rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) }
28
29 . = ALIGN(4);
30 .data : {
31 *(.data*)
32 }
33
34 . = ALIGN(4);
Simon Glassf8fff9d2014-11-10 17:16:52 -070035#ifdef CONFIG_SPL_DM
36 .u_boot_list : {
37 KEEP(*(SORT(.u_boot_list_*_driver_*)));
38 KEEP(*(SORT(.u_boot_list_*_uclass_*)));
39 }
40#endif
Simon Glass4eae4982015-06-23 15:38:30 -060041 . = .;
42 .u_boot_list : {
43 KEEP(*(SORT(.u_boot_list*_i2c_*)));
44 }
45
Simon Glassf8fff9d2014-11-10 17:16:52 -070046 . = ALIGN(4);
Albert ARIBAUD65cdd642013-02-25 00:58:58 +000047
48 __image_copy_end = .;
49
50 .rel.dyn : {
51 __rel_dyn_start = .;
52 *(.rel*)
53 __rel_dyn_end = .;
54 }
55
Albert ARIBAUDd0b5d9d2014-02-22 17:53:42 +010056 .end :
57 {
58 *(.__end)
59 }
60
61 _image_binary_end = .;
Albert ARIBAUD65cdd642013-02-25 00:58:58 +000062
Albert ARIBAUD65cdd642013-02-25 00:58:58 +000063 .bss __rel_dyn_start (OVERLAY) : {
64 __bss_start = .;
65 *(.bss*)
66 . = ALIGN(4);
Tom Rini0ce033d2013-03-18 12:31:00 -040067 __bss_end = .;
Albert ARIBAUD65cdd642013-02-25 00:58:58 +000068 }
Simon Glassfa78e0a2015-06-23 15:38:29 -060069 __bss_size = __bss_end - __bss_start;
Albert ARIBAUDd0b5d9d2014-02-22 17:53:42 +010070 .dynsym _image_binary_end : { *(.dynsym) }
Albert ARIBAUD47ed5dd2013-11-07 14:21:46 +010071 .dynbss : { *(.dynbss) }
72 .dynstr : { *(.dynstr*) }
73 .dynamic : { *(.dynamic*) }
74 .hash : { *(.hash*) }
75 .plt : { *(.plt*) }
76 .interp : { *(.interp*) }
77 .gnu : { *(.gnu*) }
78 .ARM.exidx : { *(.ARM.exidx*) }
Albert ARIBAUD65cdd642013-02-25 00:58:58 +000079}
80
Albert ARIBAUD6ebc3462013-04-12 05:14:30 +000081#if defined(CONFIG_SPL_MAX_SIZE)
82ASSERT(__image_copy_end - __image_copy_start < (CONFIG_SPL_MAX_SIZE), \
83 "SPL image too big");
84#endif
85
86#if defined(CONFIG_SPL_BSS_MAX_SIZE)
87ASSERT(__bss_end - __bss_start < (CONFIG_SPL_BSS_MAX_SIZE), \
88 "SPL image BSS too big");
89#endif
90
91#if defined(CONFIG_SPL_MAX_FOOTPRINT)
92ASSERT(__bss_end - _start < (CONFIG_SPL_MAX_FOOTPRINT), \
93 "SPL image plus BSS too big");
Albert ARIBAUD65cdd642013-02-25 00:58:58 +000094#endif