Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 1 | /* |
Kumar Gala | 7a577fd | 2011-01-12 02:48:53 -0600 | [diff] [blame] | 2 | * Copyright 2007-2009, 2011 Freescale Semiconductor, Inc. |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 3 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 4 | * SPDX-License-Identifier: GPL-2.0+ |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 5 | */ |
| 6 | |
Masahiro Yamada | 6f2ed0e | 2014-04-28 10:17:10 +0900 | [diff] [blame] | 7 | #include "config.h" |
Kumar Gala | 7a577fd | 2011-01-12 02:48:53 -0600 | [diff] [blame] | 8 | |
| 9 | #ifdef CONFIG_RESET_VECTOR_ADDRESS |
| 10 | #define RESET_VECTOR_ADDRESS CONFIG_RESET_VECTOR_ADDRESS |
| 11 | #else |
Kumar Gala | 6c97a20 | 2009-09-09 11:40:41 -0500 | [diff] [blame] | 12 | #define RESET_VECTOR_ADDRESS 0xfffffffc |
| 13 | #endif |
| 14 | |
Prabhakar Kushwaha | 0938b60 | 2014-03-31 15:31:34 +0530 | [diff] [blame] | 15 | #ifndef CONFIG_SYS_MONITOR_LEN |
| 16 | #define CONFIG_SYS_MONITOR_LEN 0x80000 |
| 17 | #endif |
| 18 | |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 19 | OUTPUT_ARCH(powerpc) |
Alexander Graf | fd96ea4 | 2014-04-11 17:09:44 +0200 | [diff] [blame] | 20 | ENTRY(_start_e500) |
Peter Tyser | fbe53f5 | 2010-09-29 14:05:56 -0500 | [diff] [blame] | 21 | |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 22 | PHDRS |
| 23 | { |
| 24 | text PT_LOAD; |
| 25 | bss PT_LOAD; |
| 26 | } |
| 27 | |
| 28 | SECTIONS |
| 29 | { |
| 30 | /* Read-only sections, merged into text segment: */ |
| 31 | . = + SIZEOF_HEADERS; |
| 32 | .interp : { *(.interp) } |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 33 | .text : |
| 34 | { |
Peter Tyser | fbe53f5 | 2010-09-29 14:05:56 -0500 | [diff] [blame] | 35 | *(.text*) |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 36 | } :text |
| 37 | _etext = .; |
| 38 | PROVIDE (etext = .); |
| 39 | .rodata : |
| 40 | { |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 41 | *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) |
| 42 | } :text |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 43 | |
| 44 | /* Read-write section, merged into data segment: */ |
| 45 | . = (. + 0x00FF) & 0xFFFFFF00; |
| 46 | _erotext = .; |
| 47 | PROVIDE (erotext = .); |
| 48 | .reloc : |
| 49 | { |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 50 | _GOT2_TABLE_ = .; |
Peter Tyser | fbe53f5 | 2010-09-29 14:05:56 -0500 | [diff] [blame] | 51 | KEEP(*(.got2)) |
Joakim Tjernlund | 337f5f5 | 2010-12-03 17:30:37 +0100 | [diff] [blame] | 52 | KEEP(*(.got)) |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 53 | _FIXUP_TABLE_ = .; |
Peter Tyser | fbe53f5 | 2010-09-29 14:05:56 -0500 | [diff] [blame] | 54 | KEEP(*(.fixup)) |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 55 | } |
Joakim Tjernlund | 337f5f5 | 2010-12-03 17:30:37 +0100 | [diff] [blame] | 56 | __got2_entries = ((_GLOBAL_OFFSET_TABLE_ - _GOT2_TABLE_) >> 2) - 1; |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 57 | __fixup_entries = (. - _FIXUP_TABLE_) >> 2; |
| 58 | |
| 59 | .data : |
| 60 | { |
Peter Tyser | fbe53f5 | 2010-09-29 14:05:56 -0500 | [diff] [blame] | 61 | *(.data*) |
| 62 | *(.sdata*) |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 63 | } |
| 64 | _edata = .; |
| 65 | PROVIDE (edata = .); |
| 66 | |
| 67 | . = .; |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 68 | |
Marek Vasut | 5567514 | 2012-10-12 10:27:03 +0000 | [diff] [blame] | 69 | . = ALIGN(4); |
| 70 | .u_boot_list : { |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 71 | KEEP(*(SORT(.u_boot_list*))); |
Marek Vasut | 5567514 | 2012-10-12 10:27:03 +0000 | [diff] [blame] | 72 | } |
| 73 | |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 74 | . = .; |
| 75 | __start___ex_table = .; |
| 76 | __ex_table : { *(__ex_table) } |
| 77 | __stop___ex_table = .; |
| 78 | |
| 79 | . = ALIGN(256); |
| 80 | __init_begin = .; |
| 81 | .text.init : { *(.text.init) } |
| 82 | .data.init : { *(.data.init) } |
| 83 | . = ALIGN(256); |
| 84 | __init_end = .; |
| 85 | |
Ying Zhang | 5df572f | 2013-05-20 14:07:23 +0800 | [diff] [blame] | 86 | #ifdef CONFIG_SYS_MPC85XX_NO_RESETVEC |
| 87 | .bootpg ADDR(.text) - 0x1000 : |
| 88 | { |
| 89 | KEEP(arch/powerpc/cpu/mpc85xx/start.o (.bootpg)) |
| 90 | } :text = 0xffff |
Prabhakar Kushwaha | 0938b60 | 2014-03-31 15:31:34 +0530 | [diff] [blame] | 91 | . = ADDR(.text) + CONFIG_SYS_MONITOR_LEN; |
Ying Zhang | 5df572f | 2013-05-20 14:07:23 +0800 | [diff] [blame] | 92 | #else |
Kumar Gala | 6c97a20 | 2009-09-09 11:40:41 -0500 | [diff] [blame] | 93 | .bootpg RESET_VECTOR_ADDRESS - 0xffc : |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 94 | { |
Stefan Roese | a47a12b | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 95 | arch/powerpc/cpu/mpc85xx/start.o (.bootpg) |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 96 | } :text = 0xffff |
| 97 | |
Kumar Gala | 6c97a20 | 2009-09-09 11:40:41 -0500 | [diff] [blame] | 98 | .resetvec RESET_VECTOR_ADDRESS : |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 99 | { |
Peter Tyser | fbe53f5 | 2010-09-29 14:05:56 -0500 | [diff] [blame] | 100 | KEEP(*(.resetvec)) |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 101 | } :text = 0xffff |
| 102 | |
Kumar Gala | 6c97a20 | 2009-09-09 11:40:41 -0500 | [diff] [blame] | 103 | . = RESET_VECTOR_ADDRESS + 0x4; |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 104 | |
Peter Tyser | 3beb40c | 2009-10-07 11:45:00 -0500 | [diff] [blame] | 105 | /* |
| 106 | * Make sure that the bss segment isn't linked at 0x0, otherwise its |
| 107 | * address won't be updated during relocation fixups. Note that |
| 108 | * this is a temporary fix. Code to dynamically the fixup the bss |
| 109 | * location will be added in the future. When the bss relocation |
| 110 | * fixup code is present this workaround should be removed. |
| 111 | */ |
| 112 | #if (RESET_VECTOR_ADDRESS == 0xfffffffc) |
| 113 | . |= 0x10; |
| 114 | #endif |
Ying Zhang | 5df572f | 2013-05-20 14:07:23 +0800 | [diff] [blame] | 115 | #endif |
Peter Tyser | 3beb40c | 2009-10-07 11:45:00 -0500 | [diff] [blame] | 116 | |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 117 | __bss_start = .; |
| 118 | .bss (NOLOAD) : |
| 119 | { |
Peter Tyser | fbe53f5 | 2010-09-29 14:05:56 -0500 | [diff] [blame] | 120 | *(.sbss*) |
| 121 | *(.bss*) |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 122 | *(COMMON) |
| 123 | } :bss |
| 124 | |
| 125 | . = ALIGN(4); |
Simon Glass | 3929fb0 | 2013-03-14 06:54:53 +0000 | [diff] [blame] | 126 | __bss_end = . ; |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 127 | PROVIDE (end = .); |
| 128 | } |