2 * Copyright 2007-2009 Freescale Semiconductor, Inc.
4 * SPDX-License-Identifier: GPL-2.0+
7 #include "config.h" /* CONFIG_BOARDDIR */
9 #ifndef RESET_VECTOR_ADDRESS
10 #ifdef CONFIG_RESET_VECTOR_ADDRESS
11 #define RESET_VECTOR_ADDRESS CONFIG_RESET_VECTOR_ADDRESS
13 #define RESET_VECTOR_ADDRESS 0xfffffffc
27 /* Read-only sections, merged into text segment: */
37 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
40 /* Read-write section, merged into data segment: */
41 . = (. + 0x00FF) & 0xFFFFFF00;
43 PROVIDE (erotext = .);
52 __got2_entries = ((_GLOBAL_OFFSET_TABLE_ - _GOT2_TABLE_) >> 2) - 1;
53 __fixup_entries = (. - _FIXUP_TABLE_) >> 2;
67 KEEP(*(SORT(.u_boot_list*)));
71 __start___ex_table = .;
72 __ex_table : { *(__ex_table) }
73 __stop___ex_table = .;
77 .text.init : { *(.text.init) }
81 LONG(0) LONG(0) /* Extend u-boot.bin to here */
88 .bootpg RESET_VECTOR_ADDRESS - 0xffc :
90 arch/powerpc/cpu/ppc4xx/start.o (.bootpg)
93 * PPC440 board need a board specific object with the
94 * TLB definitions. This needs to get included right after
95 * start.o, since the first shadow TLB only covers 4k
98 #ifdef CONFIG_INIT_TLB
99 CONFIG_INIT_TLB (.bootpg)
101 CONFIG_BOARDDIR/init.o (.bootpg)
106 .resetvec RESET_VECTOR_ADDRESS :
111 . = RESET_VECTOR_ADDRESS + 0x4;
114 * Make sure that the bss segment isn't linked at 0x0, otherwise its
115 * address won't be updated during relocation fixups. Note that
116 * this is a temporary fix. Code to dynamically the fixup the bss
117 * location will be added in the future. When the bss relocation
118 * fixup code is present this workaround should be removed.
120 #if (RESET_VECTOR_ADDRESS == 0xfffffffc)
123 #endif /* CONFIG_SPL */