blob: 41ff3f31325095f70551fda9ea24f239145996b8 [file] [log] [blame]
wdenk42d1f032003-10-15 23:53:47 +00001/*
Kumar Galaf0ff8852008-07-30 14:13:30 -05002 * (C) Copyright 2002,2003, Motorola,Inc.
wdenk42d1f032003-10-15 23:53:47 +00003 * Xianghua Xiao, X.Xiao@motorola.com.
4 *
Kumar Galaf0ff8852008-07-30 14:13:30 -05005 * Copyright 2008 Freescale Semiconductor, Inc.
6 *
wdenk42d1f032003-10-15 23:53:47 +00007 * See file CREDITS for list of people who contributed to this
8 * project.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 * MA 02111-1307 USA
24 */
25
26OUTPUT_ARCH(powerpc)
wdenk42d1f032003-10-15 23:53:47 +000027/* Do we need any of these for elf?
28 __DYNAMIC = 0; */
Kumar Galac1152802008-08-07 09:28:20 -050029PHDRS
30{
31 text PT_LOAD;
32 bss PT_LOAD;
33}
34
wdenk42d1f032003-10-15 23:53:47 +000035SECTIONS
36{
wdenk42d1f032003-10-15 23:53:47 +000037 /* Read-only sections, merged into text segment: */
38 . = + SIZEOF_HEADERS;
39 .interp : { *(.interp) }
40 .hash : { *(.hash) }
41 .dynsym : { *(.dynsym) }
42 .dynstr : { *(.dynstr) }
43 .rel.text : { *(.rel.text) }
Wolfgang Denk53677ef2008-05-20 16:00:29 +020044 .rela.text : { *(.rela.text) }
wdenk42d1f032003-10-15 23:53:47 +000045 .rel.data : { *(.rel.data) }
Wolfgang Denk53677ef2008-05-20 16:00:29 +020046 .rela.data : { *(.rela.data) }
47 .rel.rodata : { *(.rel.rodata) }
48 .rela.rodata : { *(.rela.rodata) }
wdenk42d1f032003-10-15 23:53:47 +000049 .rel.got : { *(.rel.got) }
50 .rela.got : { *(.rela.got) }
51 .rel.ctors : { *(.rel.ctors) }
52 .rela.ctors : { *(.rela.ctors) }
53 .rel.dtors : { *(.rel.dtors) }
54 .rela.dtors : { *(.rela.dtors) }
55 .rel.bss : { *(.rel.bss) }
56 .rela.bss : { *(.rela.bss) }
57 .rel.plt : { *(.rel.plt) }
58 .rela.plt : { *(.rela.plt) }
59 .init : { *(.init) }
60 .plt : { *(.plt) }
61 .text :
62 {
wdenk42d1f032003-10-15 23:53:47 +000063 *(.text)
64 *(.fixup)
65 *(.got1)
Kumar Galac1152802008-08-07 09:28:20 -050066 } :text
wdenk42d1f032003-10-15 23:53:47 +000067 _etext = .;
68 PROVIDE (etext = .);
69 .rodata :
70 {
Wolfgang Denk74812662005-12-12 16:06:05 +010071 *(.eh_frame)
Trent Piephof62fb992009-02-18 15:22:05 -080072 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
Kumar Galac1152802008-08-07 09:28:20 -050073 } :text
wdenk42d1f032003-10-15 23:53:47 +000074 .fini : { *(.fini) } =0
75 .ctors : { *(.ctors) }
76 .dtors : { *(.dtors) }
77
78 /* Read-write section, merged into data segment: */
79 . = (. + 0x00FF) & 0xFFFFFF00;
80 _erotext = .;
81 PROVIDE (erotext = .);
82 .reloc :
83 {
84 *(.got)
85 _GOT2_TABLE_ = .;
86 *(.got2)
87 _FIXUP_TABLE_ = .;
88 *(.fixup)
89 }
90 __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >> 2;
91 __fixup_entries = (. - _FIXUP_TABLE_) >> 2;
92
93 .data :
94 {
95 *(.data)
96 *(.data1)
97 *(.sdata)
98 *(.sdata2)
99 *(.dynamic)
100 CONSTRUCTORS
101 }
102 _edata = .;
103 PROVIDE (edata = .);
104
Wolfgang Denk807d5d72005-08-31 12:28:00 +0200105 . = .;
wdenk42d1f032003-10-15 23:53:47 +0000106 __u_boot_cmd_start = .;
107 .u_boot_cmd : { *(.u_boot_cmd) }
108 __u_boot_cmd_end = .;
109
Wolfgang Denk807d5d72005-08-31 12:28:00 +0200110 . = .;
wdenk42d1f032003-10-15 23:53:47 +0000111 __start___ex_table = .;
112 __ex_table : { *(__ex_table) }
113 __stop___ex_table = .;
114
115 . = ALIGN(256);
116 __init_begin = .;
117 .text.init : { *(.text.init) }
118 .data.init : { *(.data.init) }
119 . = ALIGN(256);
120 __init_end = .;
121
Kumar Galaf0ff8852008-07-30 14:13:30 -0500122 .bootpg ADDR(.text) + 0x7f000 :
123 {
124 cpu/mpc85xx/start.o (.bootpg)
Kumar Galac1152802008-08-07 09:28:20 -0500125 } :text = 0xffff
Kumar Galaf0ff8852008-07-30 14:13:30 -0500126
127 .resetvec ADDR(.text) + 0x7fffc :
128 {
129 *(.resetvec)
Kumar Galac1152802008-08-07 09:28:20 -0500130 } :text = 0xffff
Kumar Galaf0ff8852008-07-30 14:13:30 -0500131
132 . = ADDR(.text) + 0x80000;
133
wdenk42d1f032003-10-15 23:53:47 +0000134 __bss_start = .;
Wolfgang Denk64134f02008-01-12 20:31:39 +0100135 .bss (NOLOAD) :
wdenk42d1f032003-10-15 23:53:47 +0000136 {
137 *(.sbss) *(.scommon)
138 *(.dynbss)
139 *(.bss)
140 *(COMMON)
Kumar Galac1152802008-08-07 09:28:20 -0500141 } :bss
Kumar Galaf0ff8852008-07-30 14:13:30 -0500142
143 . = ALIGN(4);
wdenk42d1f032003-10-15 23:53:47 +0000144 _end = . ;
145 PROVIDE (end = .);
146}