blob: 515d32085f32caa3a9cedebb0d78794def294bd4 [file] [log] [blame]
wdenk42d1f032003-10-15 23:53:47 +00001/*
2 * (C) Copyright 2002,2003, Motorola,Inc.
3 * 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 {
71 *(.rodata)
72 *(.rodata1)
73 *(.rodata.str1.4)
Wolfgang Denk74812662005-12-12 16:06:05 +010074 *(.eh_frame)
Kumar Galac1152802008-08-07 09:28:20 -050075 } :text
wdenk42d1f032003-10-15 23:53:47 +000076 .fini : { *(.fini) } =0
77 .ctors : { *(.ctors) }
78 .dtors : { *(.dtors) }
79
80 /* Read-write section, merged into data segment: */
81 . = (. + 0x00FF) & 0xFFFFFF00;
82 _erotext = .;
83 PROVIDE (erotext = .);
84 .reloc :
85 {
86 *(.got)
87 _GOT2_TABLE_ = .;
88 *(.got2)
89 _FIXUP_TABLE_ = .;
90 *(.fixup)
91 }
92 __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >> 2;
93 __fixup_entries = (. - _FIXUP_TABLE_) >> 2;
94
95 .data :
96 {
97 *(.data)
98 *(.data1)
99 *(.sdata)
100 *(.sdata2)
101 *(.dynamic)
102 CONSTRUCTORS
103 }
104 _edata = .;
105 PROVIDE (edata = .);
106
Wolfgang Denk807d5d72005-08-31 12:28:00 +0200107 . = .;
wdenk42d1f032003-10-15 23:53:47 +0000108 __u_boot_cmd_start = .;
109 .u_boot_cmd : { *(.u_boot_cmd) }
110 __u_boot_cmd_end = .;
111
Wolfgang Denk807d5d72005-08-31 12:28:00 +0200112 . = .;
wdenk42d1f032003-10-15 23:53:47 +0000113 __start___ex_table = .;
114 __ex_table : { *(__ex_table) }
115 __stop___ex_table = .;
116
117 . = ALIGN(256);
118 __init_begin = .;
119 .text.init : { *(.text.init) }
120 .data.init : { *(.data.init) }
121 . = ALIGN(256);
122 __init_end = .;
123
Kumar Galaf0ff8852008-07-30 14:13:30 -0500124 .bootpg ADDR(.text) + 0x7f000 :
125 {
126 cpu/mpc85xx/start.o (.bootpg)
Kumar Galac1152802008-08-07 09:28:20 -0500127 } :text = 0xffff
Kumar Galaf0ff8852008-07-30 14:13:30 -0500128
129 .resetvec ADDR(.text) + 0x7fffc :
130 {
131 *(.resetvec)
Kumar Galac1152802008-08-07 09:28:20 -0500132 } :text = 0xffff
Kumar Galaf0ff8852008-07-30 14:13:30 -0500133
134 . = ADDR(.text) + 0x80000;
135
wdenk42d1f032003-10-15 23:53:47 +0000136 __bss_start = .;
Wolfgang Denk64134f02008-01-12 20:31:39 +0100137 .bss (NOLOAD) :
wdenk42d1f032003-10-15 23:53:47 +0000138 {
139 *(.sbss) *(.scommon)
140 *(.dynbss)
141 *(.bss)
142 *(COMMON)
Kumar Galac1152802008-08-07 09:28:20 -0500143 } :bss
Kumar Galaf0ff8852008-07-30 14:13:30 -0500144
145 . = ALIGN(4);
wdenk42d1f032003-10-15 23:53:47 +0000146 _end = . ;
147 PROVIDE (end = .);
148}