Rafal Jaworowski | 8993e54 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 1 | /* |
Wolfgang Denk | 566d49a | 2010-11-22 23:36:42 +0100 | [diff] [blame] | 2 | * (C) Copyright 2007-2010 DENX Software Engineering. |
Rafal Jaworowski | 8993e54 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 3 | * |
| 4 | * See file CREDITS for list of people who contributed to this |
| 5 | * project. |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License as |
| 9 | * published by the Free Software Foundation; either version 2 of |
| 10 | * the License, or (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 20 | * MA 02111-1307 USA |
| 21 | */ |
| 22 | |
| 23 | OUTPUT_ARCH(powerpc) |
| 24 | SECTIONS |
| 25 | { |
Rafal Jaworowski | 8993e54 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 26 | .text : |
| 27 | { |
Wolfgang Denk | 566d49a | 2010-11-22 23:36:42 +0100 | [diff] [blame] | 28 | arch/powerpc/cpu/mpc512x/start.o (.text*) |
| 29 | *(.text*) |
Rafal Jaworowski | 8993e54 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 30 | . = ALIGN(16); |
Trent Piepho | f62fb99 | 2009-02-18 15:22:05 -0800 | [diff] [blame] | 31 | *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) |
Rafal Jaworowski | 8993e54 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 32 | } |
Rafal Jaworowski | 8993e54 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 33 | |
| 34 | /* Read-write section, merged into data segment: */ |
| 35 | . = (. + 0x0FFF) & 0xFFFFF000; |
| 36 | _erotext = .; |
| 37 | PROVIDE (erotext = .); |
| 38 | .reloc : |
| 39 | { |
Rafal Jaworowski | 8993e54 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 40 | _GOT2_TABLE_ = .; |
Wolfgang Denk | 566d49a | 2010-11-22 23:36:42 +0100 | [diff] [blame] | 41 | KEEP(*(.got2)) |
Joakim Tjernlund | 337f5f5 | 2010-12-03 17:30:37 +0100 | [diff] [blame] | 42 | KEEP(*(.got)) |
| 43 | PROVIDE(_GLOBAL_OFFSET_TABLE_ = . + 4); |
Rafal Jaworowski | 8993e54 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 44 | _FIXUP_TABLE_ = .; |
Wolfgang Denk | 566d49a | 2010-11-22 23:36:42 +0100 | [diff] [blame] | 45 | KEEP(*(.fixup)) |
Rafal Jaworowski | 8993e54 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 46 | *(.fixup) |
| 47 | } |
Joakim Tjernlund | 337f5f5 | 2010-12-03 17:30:37 +0100 | [diff] [blame] | 48 | __got2_entries = ((_GLOBAL_OFFSET_TABLE_ - _GOT2_TABLE_) >> 2) - 1; |
Rafal Jaworowski | 8993e54 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 49 | __fixup_entries = (. - _FIXUP_TABLE_) >> 2; |
| 50 | |
| 51 | .data : |
| 52 | { |
Wolfgang Denk | 566d49a | 2010-11-22 23:36:42 +0100 | [diff] [blame] | 53 | *(.data*) |
| 54 | *(.sdata*) |
Rafal Jaworowski | 8993e54 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 55 | } |
| 56 | _edata = .; |
| 57 | PROVIDE (edata = .); |
| 58 | |
| 59 | . = .; |
Rafal Jaworowski | 8993e54 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 60 | |
Marek Vasut | 5567514 | 2012-10-12 10:27:03 +0000 | [diff] [blame] | 61 | . = ALIGN(4); |
| 62 | .u_boot_list : { |
| 63 | #include <u-boot.lst> |
| 64 | } |
| 65 | |
Rafal Jaworowski | 8993e54 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 66 | |
| 67 | . = .; |
| 68 | __start___ex_table = .; |
| 69 | __ex_table : { *(__ex_table) } |
| 70 | __stop___ex_table = .; |
| 71 | |
| 72 | . = ALIGN(4096); |
| 73 | __init_begin = .; |
| 74 | .text.init : { *(.text.init) } |
| 75 | .data.init : { *(.data.init) } |
| 76 | . = ALIGN(4096); |
| 77 | __init_end = .; |
| 78 | |
| 79 | __bss_start = .; |
Wolfgang Denk | 64134f0 | 2008-01-12 20:31:39 +0100 | [diff] [blame] | 80 | .bss (NOLOAD) : |
Rafal Jaworowski | 8993e54 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 81 | { |
Wolfgang Denk | 566d49a | 2010-11-22 23:36:42 +0100 | [diff] [blame] | 82 | *(.bss*) |
| 83 | *(.sbss*) |
Rafal Jaworowski | 8993e54 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 84 | *(COMMON) |
Selvamuthukumar | 9b827cf | 2008-10-16 22:54:03 +0530 | [diff] [blame] | 85 | . = ALIGN(4); |
Rafal Jaworowski | 8993e54 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 86 | } |
Po-Yu Chuang | 44c6e65 | 2011-03-01 22:59:59 +0000 | [diff] [blame] | 87 | __bss_end__ = . ; |
Rafal Jaworowski | 8993e54 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 88 | PROVIDE (end = .); |
| 89 | } |
| 90 | ENTRY(_start) |