blob: e504ea754403a23df0bd81b0079a2f9e40739a56 [file] [log] [blame]
Gabor Juhoscb5dbca2013-01-30 04:31:52 +00001/*
2 * (C) Copyright 2003
3 * Wolfgang Denk Engineering, <wd@denx.de>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Gabor Juhoscb5dbca2013-01-30 04:31:52 +00006 */
7
8#if defined(CONFIG_64BIT)
9#define PTR_COUNT_SHIFT 3
10#else
11#define PTR_COUNT_SHIFT 2
12#endif
13
14OUTPUT_ARCH(mips)
15ENTRY(_start)
16SECTIONS
17{
18 . = 0x00000000;
19
20 . = ALIGN(4);
21 .text : {
22 *(.text*)
23 }
24
25 . = ALIGN(4);
26 .rodata : {
27 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
28 }
29
30 . = ALIGN(4);
31 .data : {
32 *(.data*)
33 }
34
35 . = .;
36 _gp = ALIGN(16) + 0x7ff0;
37
38 .got : {
Gabor Juhoscb5dbca2013-01-30 04:31:52 +000039 *(.got)
Gabor Juhoscb5dbca2013-01-30 04:31:52 +000040 }
41
Gabor Juhos45397812013-02-12 22:22:12 +010042 num_got_entries = SIZEOF(.got) >> PTR_COUNT_SHIFT;
43
Gabor Juhoscb5dbca2013-01-30 04:31:52 +000044 . = ALIGN(4);
45 .sdata : {
46 *(.sdata*)
47 }
48
49 . = ALIGN(4);
50 .u_boot_list : {
Albert ARIBAUDef123c52013-02-25 00:59:00 +000051 KEEP(*(SORT(.u_boot_list*)));
Gabor Juhoscb5dbca2013-01-30 04:31:52 +000052 }
53
Gabor Juhoscb5dbca2013-01-30 04:31:52 +000054 . = ALIGN(4);
Daniel Schwierzeck3420bf12013-02-12 22:22:12 +010055 __image_copy_end = .;
Paul Burtona0af08b2014-04-07 10:11:19 +010056 __init_end = .;
Daniel Schwierzeck3420bf12013-02-12 22:22:12 +010057
Gabor Juhos0ba89262013-02-12 22:22:13 +010058 .rel.dyn : {
59 __rel_dyn_start = .;
60 *(.rel.dyn)
61 __rel_dyn_end = .;
62 }
63
Daniel Schwierzeck79fd7e62013-10-11 17:46:59 +020064 _end = .;
Gabor Juhos0ba89262013-02-12 22:22:13 +010065
66 .bss __rel_dyn_start (OVERLAY) : {
Daniel Schwierzecka52852c2013-02-12 22:22:12 +010067 __bss_start = .;
68 *(.sbss.*)
69 *(.bss.*)
70 *(COMMON)
71 . = ALIGN(4);
72 __bss_end = .;
Gabor Juhoscb5dbca2013-01-30 04:31:52 +000073 }
Gabor Juhos0ba89262013-02-12 22:22:13 +010074
Daniel Schwierzeck79fd7e62013-10-11 17:46:59 +020075 .dynsym _end : {
76 *(.dynsym)
77 }
78
79 .dynbss : {
Gabor Juhos0ba89262013-02-12 22:22:13 +010080 *(.dynbss)
Daniel Schwierzeck79fd7e62013-10-11 17:46:59 +020081 }
82
83 .dynstr : {
Gabor Juhos0ba89262013-02-12 22:22:13 +010084 *(.dynstr)
Daniel Schwierzeck79fd7e62013-10-11 17:46:59 +020085 }
86
87 .dynamic : {
Gabor Juhos0ba89262013-02-12 22:22:13 +010088 *(.dynamic)
Daniel Schwierzeck79fd7e62013-10-11 17:46:59 +020089 }
90
91 .plt : {
Gabor Juhos0ba89262013-02-12 22:22:13 +010092 *(.plt)
Daniel Schwierzeck79fd7e62013-10-11 17:46:59 +020093 }
94
95 .interp : {
96 *(.interp)
97 }
98
99 .gnu : {
100 *(.gnu*)
101 }
102
103 .MIPS.stubs : {
104 *(.MIPS.stubs)
105 }
106
107 .hash : {
108 *(.hash)
Gabor Juhos0ba89262013-02-12 22:22:13 +0100109 }
Gabor Juhoscb5dbca2013-01-30 04:31:52 +0000110}