Scott Wood | c97cd1b | 2012-09-20 19:02:18 -0500 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2006 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de |
| 4 | * |
| 5 | * Copyright 2009 Freescale Semiconductor, Inc. |
| 6 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 7 | * SPDX-License-Identifier: GPL-2.0+ |
Scott Wood | c97cd1b | 2012-09-20 19:02:18 -0500 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include "config.h" /* CONFIG_BOARDDIR */ |
| 11 | |
| 12 | OUTPUT_ARCH(powerpc) |
Ying Zhang | 5df572f | 2013-05-20 14:07:23 +0800 | [diff] [blame] | 13 | #ifdef CONFIG_SYS_MPC85XX_NO_RESETVEC |
| 14 | PHDRS |
| 15 | { |
| 16 | text PT_LOAD; |
| 17 | bss PT_LOAD; |
| 18 | } |
| 19 | #endif |
Scott Wood | c97cd1b | 2012-09-20 19:02:18 -0500 | [diff] [blame] | 20 | SECTIONS |
| 21 | { |
| 22 | . = CONFIG_SPL_TEXT_BASE; |
| 23 | .text : { |
| 24 | *(.text*) |
| 25 | } |
| 26 | _etext = .; |
| 27 | |
| 28 | .reloc : { |
| 29 | _GOT2_TABLE_ = .; |
| 30 | KEEP(*(.got2)) |
| 31 | KEEP(*(.got)) |
| 32 | PROVIDE(_GLOBAL_OFFSET_TABLE_ = . + 4); |
| 33 | _FIXUP_TABLE_ = .; |
| 34 | KEEP(*(.fixup)) |
| 35 | } |
| 36 | __got2_entries = ((_GLOBAL_OFFSET_TABLE_ - _GOT2_TABLE_) >> 2) - 1; |
| 37 | __fixup_entries = (. - _FIXUP_TABLE_) >> 2; |
| 38 | |
| 39 | . = ALIGN(8); |
| 40 | .data : { |
| 41 | *(.rodata*) |
| 42 | *(.data*) |
| 43 | *(.sdata*) |
| 44 | } |
| 45 | _edata = .; |
| 46 | |
Ying Zhang | 81b867a | 2013-09-04 17:03:45 +0800 | [diff] [blame] | 47 | . = ALIGN(4); |
| 48 | .u_boot_list : { |
| 49 | KEEP(*(SORT(.u_boot_list*))); |
| 50 | } |
| 51 | |
Ying Zhang | bb0dc10 | 2013-08-16 15:16:11 +0800 | [diff] [blame] | 52 | . = .; |
| 53 | __start___ex_table = .; |
| 54 | __ex_table : { *(__ex_table) } |
| 55 | __stop___ex_table = .; |
| 56 | |
Scott Wood | c97cd1b | 2012-09-20 19:02:18 -0500 | [diff] [blame] | 57 | . = ALIGN(8); |
| 58 | __init_begin = .; |
| 59 | __init_end = .; |
Po Liu | 6609916 | 2014-01-10 10:10:58 +0800 | [diff] [blame] | 60 | |
| 61 | /* For ifc, elbc, esdhc, espi, all need the SPL without section .resetvec */ |
| 62 | #ifdef CONFIG_SYS_MPC85XX_NO_RESETVEC |
| 63 | .bootpg ADDR(.text) - 0x1000 : |
| 64 | { |
| 65 | KEEP(*(.bootpg)) |
| 66 | } :text = 0xffff |
| 67 | #else |
Scott Wood | c97cd1b | 2012-09-20 19:02:18 -0500 | [diff] [blame] | 68 | #if defined(CONFIG_FSL_IFC) /* Restrict bootpg at 4K boundry for IFC */ |
Prabhakar Kushwaha | 49efe85b | 2014-04-08 19:12:19 +0530 | [diff] [blame^] | 69 | #ifndef BOOT_PAGE_OFFSET |
| 70 | #define BOOT_PAGE_OFFSET 0x1000 |
| 71 | #endif |
| 72 | .bootpg ADDR(.text) + BOOT_PAGE_OFFSET : |
Scott Wood | c97cd1b | 2012-09-20 19:02:18 -0500 | [diff] [blame] | 73 | { |
Prabhakar Kushwaha | 3a88179 | 2013-04-16 13:27:59 +0530 | [diff] [blame] | 74 | arch/powerpc/cpu/mpc85xx/start.o (.bootpg) |
Scott Wood | c97cd1b | 2012-09-20 19:02:18 -0500 | [diff] [blame] | 75 | } |
Prabhakar Kushwaha | 49efe85b | 2014-04-08 19:12:19 +0530 | [diff] [blame^] | 76 | #ifndef RESET_VECTOR_OFFSET |
Scott Wood | c97cd1b | 2012-09-20 19:02:18 -0500 | [diff] [blame] | 77 | #define RESET_VECTOR_OFFSET 0x1ffc /* IFC has 8K sram */ |
Prabhakar Kushwaha | 49efe85b | 2014-04-08 19:12:19 +0530 | [diff] [blame^] | 78 | #endif |
Scott Wood | c97cd1b | 2012-09-20 19:02:18 -0500 | [diff] [blame] | 79 | #elif defined(CONFIG_FSL_ELBC) |
| 80 | #define RESET_VECTOR_OFFSET 0xffc /* LBC has 4k sram */ |
| 81 | #else |
| 82 | #error unknown NAND controller |
| 83 | #endif |
| 84 | .resetvec ADDR(.text) + RESET_VECTOR_OFFSET : { |
| 85 | KEEP(*(.resetvec)) |
| 86 | } = 0xffff |
Ying Zhang | 5df572f | 2013-05-20 14:07:23 +0800 | [diff] [blame] | 87 | #endif |
Scott Wood | c97cd1b | 2012-09-20 19:02:18 -0500 | [diff] [blame] | 88 | |
| 89 | /* |
| 90 | * Make sure that the bss segment isn't linked at 0x0, otherwise its |
| 91 | * address won't be updated during relocation fixups. |
| 92 | */ |
| 93 | . |= 0x10; |
| 94 | |
Ying Zhang | 67ad0d5 | 2013-06-07 17:25:16 +0800 | [diff] [blame] | 95 | . = ALIGN(4); |
Scott Wood | c97cd1b | 2012-09-20 19:02:18 -0500 | [diff] [blame] | 96 | __bss_start = .; |
| 97 | .bss : { |
| 98 | *(.sbss*) |
| 99 | *(.bss*) |
| 100 | } |
Ying Zhang | 67ad0d5 | 2013-06-07 17:25:16 +0800 | [diff] [blame] | 101 | . = ALIGN(4); |
Simon Glass | 3929fb0 | 2013-03-14 06:54:53 +0000 | [diff] [blame] | 102 | __bss_end = .; |
Scott Wood | c97cd1b | 2012-09-20 19:02:18 -0500 | [diff] [blame] | 103 | } |