2 * Copyright 2007-2009 Freescale Semiconductor, Inc.
4 * See file CREDITS for list of people who contributed to this
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 #include "config.h" /* CONFIG_BOARDDIR */
25 #ifndef RESET_VECTOR_ADDRESS
26 #define RESET_VECTOR_ADDRESS 0xfffffffc
30 /* Do we need any of these for elf?
40 /* Read-only sections, merged into text segment: */
42 .interp : { *(.interp) }
44 .dynsym : { *(.dynsym) }
45 .dynstr : { *(.dynstr) }
46 .rel.text : { *(.rel.text) }
47 .rela.text : { *(.rela.text) }
48 .rel.data : { *(.rel.data) }
49 .rela.data : { *(.rela.data) }
50 .rel.rodata : { *(.rel.rodata) }
51 .rela.rodata : { *(.rela.rodata) }
52 .rel.got : { *(.rel.got) }
53 .rela.got : { *(.rela.got) }
54 .rel.ctors : { *(.rel.ctors) }
55 .rela.ctors : { *(.rela.ctors) }
56 .rel.dtors : { *(.rel.dtors) }
57 .rela.dtors : { *(.rela.dtors) }
58 .rel.bss : { *(.rel.bss) }
59 .rela.bss : { *(.rela.bss) }
60 .rel.plt : { *(.rel.plt) }
61 .rela.plt : { *(.rela.plt) }
74 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
76 .fini : { *(.fini) } =0
77 .ctors : { *(.ctors) }
78 .dtors : { *(.dtors) }
80 /* Read-write section, merged into data segment: */
81 . = (. + 0x00FF) & 0xFFFFFF00;
83 PROVIDE (erotext = .);
92 __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >> 2;
93 __fixup_entries = (. - _FIXUP_TABLE_) >> 2;
108 __u_boot_cmd_start = .;
109 .u_boot_cmd : { *(.u_boot_cmd) }
110 __u_boot_cmd_end = .;
113 __start___ex_table = .;
114 __ex_table : { *(__ex_table) }
115 __stop___ex_table = .;
119 .text.init : { *(.text.init) }
120 .data.init : { *(.data.init) }
125 .bootpg RESET_VECTOR_ADDRESS - 0xffc :
127 arch/powerpc/cpu/ppc4xx/start.o (.bootpg)
130 * PPC440 board need a board specific object with the
131 * TLB definitions. This needs to get included right after
132 * start.o, since the first shadow TLB only covers 4k
135 CONFIG_BOARDDIR/init.o (.bootpg)
139 .resetvec RESET_VECTOR_ADDRESS :
144 . = RESET_VECTOR_ADDRESS + 0x4;
147 * Make sure that the bss segment isn't linked at 0x0, otherwise its
148 * address won't be updated during relocation fixups. Note that
149 * this is a temporary fix. Code to dynamically the fixup the bss
150 * location will be added in the future. When the bss relocation
151 * fixup code is present this workaround should be removed.
153 #if (RESET_VECTOR_ADDRESS == 0xfffffffc)