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 #ifndef RESET_VECTOR_ADDRESS
24 #define RESET_VECTOR_ADDRESS 0xfffffffc
39 /* Read-only sections, merged into text segment: */
41 .interp : { *(.interp) }
42 /* To simplify mass deployment, environment precedes the monitor text in the
45 .ppcenv CONFIG_ENV_ADDR : { common/env_embedded.o (.ppcenv) }
54 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
57 /* Read-write section, merged into data segment: */
58 . = (. + 0x00FF) & 0xFFFFFF00;
60 PROVIDE (erotext = .);
66 PROVIDE(_GLOBAL_OFFSET_TABLE_ = . + 4);
70 __got2_entries = ((_GLOBAL_OFFSET_TABLE_ - _GOT2_TABLE_) >> 2) - 1;
71 __fixup_entries = (. - _FIXUP_TABLE_) >> 2;
82 __u_boot_cmd_start = .;
83 .u_boot_cmd : { *(.u_boot_cmd) }
87 __start___ex_table = .;
88 __ex_table : { *(__ex_table) }
89 __stop___ex_table = .;
93 .text.init : { *(.text.init) }
94 .data.init : { *(.data.init) }
98 .bootpg RESET_VECTOR_ADDRESS - 0xffc :
100 arch/powerpc/cpu/mpc85xx/start.o (.bootpg)
103 .resetvec RESET_VECTOR_ADDRESS :
108 . = RESET_VECTOR_ADDRESS + 0x4;
111 * Make sure that the bss segment isn't linked at 0x0, otherwise its
112 * address won't be updated during relocation fixups. Note that
113 * this is a temporary fix. Code to dynamically the fixup the bss
114 * location will be added in the future. When the bss relocation
115 * fixup code is present this workaround should be removed.
117 #if (RESET_VECTOR_ADDRESS == 0xfffffffc)