1 /* SPDX-License-Identifier: GPL-2.0+ */
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de
6 * Copyright 2009 Freescale Semiconductor, Inc.
12 #ifdef CONFIG_SYS_MPC85XX_NO_RESETVEC
34 __got2_entries = ((_GLOBAL_OFFSET_TABLE_ - _GOT2_TABLE_) >> 2) - 1;
35 __fixup_entries = (. - _FIXUP_TABLE_) >> 2;
47 KEEP(*(SORT(.u_boot_list*)));
51 __start___ex_table = .;
52 __ex_table : { *(__ex_table) }
53 __stop___ex_table = .;
59 #ifdef CONFIG_SPL_SKIP_RELOCATE
70 /* For ifc, elbc, esdhc, espi, all need the SPL without section .resetvec */
71 #ifdef CONFIG_SYS_MPC85XX_NO_RESETVEC
72 .bootpg ADDR(.text) - 0x1000 :
77 #if defined(CONFIG_FSL_IFC) /* Restrict bootpg at 4K boundry for IFC */
78 #ifndef BOOT_PAGE_OFFSET
79 #define BOOT_PAGE_OFFSET 0x1000
81 .bootpg ADDR(.text) + BOOT_PAGE_OFFSET :
83 arch/powerpc/cpu/mpc85xx/start.o (.bootpg)
85 #ifndef RESET_VECTOR_OFFSET
86 #define RESET_VECTOR_OFFSET 0x1ffc /* IFC has 8K sram */
88 #elif defined(CONFIG_FSL_ELBC)
89 #define RESET_VECTOR_OFFSET 0xffc /* LBC has 4k sram */
91 #error unknown NAND controller
93 .resetvec ADDR(.text) + RESET_VECTOR_OFFSET : {
98 #ifndef CONFIG_SPL_SKIP_RELOCATE
100 * Make sure that the bss segment isn't linked at 0x0, otherwise its
101 * address won't be updated during relocation fixups.