Stefan Roese | 4649913 | 2009-10-27 16:11:26 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2007-2009 Freescale Semiconductor, Inc. |
| 3 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 4 | * SPDX-License-Identifier: GPL-2.0+ |
Stefan Roese | 4649913 | 2009-10-27 16:11:26 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include "config.h" /* CONFIG_BOARDDIR */ |
| 8 | |
| 9 | #ifndef RESET_VECTOR_ADDRESS |
Ricardo Ribalda Delgado | d20b999 | 2010-12-07 14:27:56 +0100 | [diff] [blame] | 10 | #ifdef CONFIG_RESET_VECTOR_ADDRESS |
| 11 | #define RESET_VECTOR_ADDRESS CONFIG_RESET_VECTOR_ADDRESS |
| 12 | #else |
Stefan Roese | 4649913 | 2009-10-27 16:11:26 +0100 | [diff] [blame] | 13 | #define RESET_VECTOR_ADDRESS 0xfffffffc |
| 14 | #endif |
Ricardo Ribalda Delgado | d20b999 | 2010-12-07 14:27:56 +0100 | [diff] [blame] | 15 | #endif |
Stefan Roese | 4649913 | 2009-10-27 16:11:26 +0100 | [diff] [blame] | 16 | |
| 17 | OUTPUT_ARCH(powerpc) |
Wolfgang Denk | ee8028b | 2010-11-21 20:55:42 +0100 | [diff] [blame] | 18 | |
Stefan Roese | 4649913 | 2009-10-27 16:11:26 +0100 | [diff] [blame] | 19 | PHDRS |
| 20 | { |
| 21 | text PT_LOAD; |
| 22 | bss PT_LOAD; |
| 23 | } |
| 24 | |
| 25 | SECTIONS |
| 26 | { |
| 27 | /* Read-only sections, merged into text segment: */ |
| 28 | . = + SIZEOF_HEADERS; |
Stefan Roese | 4649913 | 2009-10-27 16:11:26 +0100 | [diff] [blame] | 29 | .text : |
| 30 | { |
Wolfgang Denk | ee8028b | 2010-11-21 20:55:42 +0100 | [diff] [blame] | 31 | *(.text*) |
Stefan Roese | 4649913 | 2009-10-27 16:11:26 +0100 | [diff] [blame] | 32 | } :text |
| 33 | _etext = .; |
| 34 | PROVIDE (etext = .); |
| 35 | .rodata : |
| 36 | { |
Stefan Roese | 4649913 | 2009-10-27 16:11:26 +0100 | [diff] [blame] | 37 | *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) |
| 38 | } :text |
Stefan Roese | 4649913 | 2009-10-27 16:11:26 +0100 | [diff] [blame] | 39 | |
| 40 | /* Read-write section, merged into data segment: */ |
| 41 | . = (. + 0x00FF) & 0xFFFFFF00; |
| 42 | _erotext = .; |
| 43 | PROVIDE (erotext = .); |
| 44 | .reloc : |
| 45 | { |
Stefan Roese | 4649913 | 2009-10-27 16:11:26 +0100 | [diff] [blame] | 46 | _GOT2_TABLE_ = .; |
Wolfgang Denk | ee8028b | 2010-11-21 20:55:42 +0100 | [diff] [blame] | 47 | KEEP(*(.got2)) |
Joakim Tjernlund | 337f5f5 | 2010-12-03 17:30:37 +0100 | [diff] [blame] | 48 | KEEP(*(.got)) |
| 49 | PROVIDE(_GLOBAL_OFFSET_TABLE_ = . + 4); |
Stefan Roese | 4649913 | 2009-10-27 16:11:26 +0100 | [diff] [blame] | 50 | _FIXUP_TABLE_ = .; |
Wolfgang Denk | ee8028b | 2010-11-21 20:55:42 +0100 | [diff] [blame] | 51 | KEEP(*(.fixup)) |
Stefan Roese | 4649913 | 2009-10-27 16:11:26 +0100 | [diff] [blame] | 52 | } |
Joakim Tjernlund | 337f5f5 | 2010-12-03 17:30:37 +0100 | [diff] [blame] | 53 | __got2_entries = ((_GLOBAL_OFFSET_TABLE_ - _GOT2_TABLE_) >> 2) - 1; |
Stefan Roese | 4649913 | 2009-10-27 16:11:26 +0100 | [diff] [blame] | 54 | __fixup_entries = (. - _FIXUP_TABLE_) >> 2; |
| 55 | |
| 56 | .data : |
| 57 | { |
Wolfgang Denk | ee8028b | 2010-11-21 20:55:42 +0100 | [diff] [blame] | 58 | *(.data*) |
| 59 | *(.sdata*) |
Stefan Roese | 4649913 | 2009-10-27 16:11:26 +0100 | [diff] [blame] | 60 | } |
| 61 | _edata = .; |
| 62 | PROVIDE (edata = .); |
| 63 | |
| 64 | . = .; |
Stefan Roese | 4649913 | 2009-10-27 16:11:26 +0100 | [diff] [blame] | 65 | |
Marek Vasut | 5567514 | 2012-10-12 10:27:03 +0000 | [diff] [blame] | 66 | . = ALIGN(4); |
| 67 | .u_boot_list : { |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 68 | KEEP(*(SORT(.u_boot_list*))); |
Marek Vasut | 5567514 | 2012-10-12 10:27:03 +0000 | [diff] [blame] | 69 | } |
| 70 | |
Stefan Roese | 4649913 | 2009-10-27 16:11:26 +0100 | [diff] [blame] | 71 | . = .; |
| 72 | __start___ex_table = .; |
| 73 | __ex_table : { *(__ex_table) } |
| 74 | __stop___ex_table = .; |
| 75 | |
| 76 | . = ALIGN(256); |
| 77 | __init_begin = .; |
| 78 | .text.init : { *(.text.init) } |
| 79 | .data.init : { *(.data.init) } |
| 80 | . = ALIGN(256); |
| 81 | __init_end = .; |
| 82 | |
Stefan Roese | 98f99e9 | 2013-04-02 10:37:04 +0200 | [diff] [blame] | 83 | #ifndef CONFIG_SPL |
Stefan Roese | 4649913 | 2009-10-27 16:11:26 +0100 | [diff] [blame] | 84 | #ifdef CONFIG_440 |
| 85 | .bootpg RESET_VECTOR_ADDRESS - 0xffc : |
| 86 | { |
Stefan Roese | a47a12b | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 87 | arch/powerpc/cpu/ppc4xx/start.o (.bootpg) |
Stefan Roese | 4649913 | 2009-10-27 16:11:26 +0100 | [diff] [blame] | 88 | |
| 89 | /* |
| 90 | * PPC440 board need a board specific object with the |
| 91 | * TLB definitions. This needs to get included right after |
| 92 | * start.o, since the first shadow TLB only covers 4k |
| 93 | * of address space. |
| 94 | */ |
Ricardo Ribalda Delgado | d20b999 | 2010-12-07 14:27:56 +0100 | [diff] [blame] | 95 | #ifdef CONFIG_INIT_TLB |
| 96 | CONFIG_INIT_TLB (.bootpg) |
| 97 | #else |
Stefan Roese | 4649913 | 2009-10-27 16:11:26 +0100 | [diff] [blame] | 98 | CONFIG_BOARDDIR/init.o (.bootpg) |
Ricardo Ribalda Delgado | d20b999 | 2010-12-07 14:27:56 +0100 | [diff] [blame] | 99 | #endif |
Stefan Roese | 4649913 | 2009-10-27 16:11:26 +0100 | [diff] [blame] | 100 | } :text = 0xffff |
| 101 | #endif |
| 102 | |
| 103 | .resetvec RESET_VECTOR_ADDRESS : |
| 104 | { |
Wolfgang Denk | ee8028b | 2010-11-21 20:55:42 +0100 | [diff] [blame] | 105 | KEEP(*(.resetvec)) |
Stefan Roese | 4649913 | 2009-10-27 16:11:26 +0100 | [diff] [blame] | 106 | } :text = 0xffff |
| 107 | |
| 108 | . = RESET_VECTOR_ADDRESS + 0x4; |
| 109 | |
| 110 | /* |
| 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. |
| 116 | */ |
| 117 | #if (RESET_VECTOR_ADDRESS == 0xfffffffc) |
| 118 | . |= 0x10; |
| 119 | #endif |
Stefan Roese | 98f99e9 | 2013-04-02 10:37:04 +0200 | [diff] [blame] | 120 | #endif /* CONFIG_SPL */ |
Stefan Roese | 4649913 | 2009-10-27 16:11:26 +0100 | [diff] [blame] | 121 | |
| 122 | __bss_start = .; |
| 123 | .bss (NOLOAD) : |
| 124 | { |
Wolfgang Denk | ee8028b | 2010-11-21 20:55:42 +0100 | [diff] [blame] | 125 | *(.bss*) |
| 126 | *(.sbss*) |
Stefan Roese | 4649913 | 2009-10-27 16:11:26 +0100 | [diff] [blame] | 127 | *(COMMON) |
| 128 | } :bss |
| 129 | |
| 130 | . = ALIGN(4); |
Simon Glass | 3929fb0 | 2013-03-14 06:54:53 +0000 | [diff] [blame] | 131 | __bss_end = . ; |
Stefan Roese | 4649913 | 2009-10-27 16:11:26 +0100 | [diff] [blame] | 132 | PROVIDE (end = .); |
| 133 | } |