blob: 76f89f188d9302fd9d63701ff9089bdda7e98243 [file] [log] [blame]
Stefan Roese71665eb2008-03-03 17:27:02 +01001/*
2 * (C) Copyright 2008
3 * Stefan Roese, DENX Software Engineering, sr@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24OUTPUT_ARCH(powerpc)
Stefan Roese71665eb2008-03-03 17:27:02 +010025SECTIONS
26{
27 /* Read-only sections, merged into text segment: */
28 . = + SIZEOF_HEADERS;
Stefan Roese71665eb2008-03-03 17:27:02 +010029 .text :
30 {
31 /* WARNING - the following is hand-optimized to fit within */
32 /* the sector layout of our flash chips! XXX FIXME XXX */
33
Stefan Roesea47a12b2010-04-15 16:07:28 +020034 arch/powerpc/cpu/ppc4xx/start.o (.text)
Wolfgang Denkee8028b2010-11-21 20:55:42 +010035 board/amcc/canyonlands/init.o (.text*)
Stefan Roese71665eb2008-03-03 17:27:02 +010036
37 /* Align to next NAND block */
Stefan Roese499e7832008-04-08 10:33:29 +020038 . = ALIGN(0x20000);
Jean-Christophe PLAGNIOL-VILLARD0cf4fd32008-09-10 22:48:01 +020039 common/env_embedded.o (.ppcenv)
Stefan Roese71665eb2008-03-03 17:27:02 +010040 /* Keep some space here for redundant env and potential bad env blocks */
Stefan Roese499e7832008-04-08 10:33:29 +020041 . = ALIGN(0x80000);
Stefan Roese71665eb2008-03-03 17:27:02 +010042
Wolfgang Denkee8028b2010-11-21 20:55:42 +010043 *(.text*)
Stefan Roese71665eb2008-03-03 17:27:02 +010044 }
45 _etext = .;
46 PROVIDE (etext = .);
47 .rodata :
48 {
Trent Piephof62fb992009-02-18 15:22:05 -080049 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
Stefan Roese71665eb2008-03-03 17:27:02 +010050 }
Stefan Roese71665eb2008-03-03 17:27:02 +010051
52 /* Read-write section, merged into data segment: */
53 . = (. + 0x00FF) & 0xFFFFFF00;
54 _erotext = .;
55 PROVIDE (erotext = .);
56 .reloc :
57 {
Wolfgang Denkee8028b2010-11-21 20:55:42 +010058 KEEP(*(.got))
Stefan Roese71665eb2008-03-03 17:27:02 +010059 _GOT2_TABLE_ = .;
Wolfgang Denkee8028b2010-11-21 20:55:42 +010060 KEEP(*(.got2))
Stefan Roese71665eb2008-03-03 17:27:02 +010061 _FIXUP_TABLE_ = .;
Wolfgang Denkee8028b2010-11-21 20:55:42 +010062 KEEP(*(.fixup))
Stefan Roese71665eb2008-03-03 17:27:02 +010063 }
64 __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >>2;
65 __fixup_entries = (. - _FIXUP_TABLE_)>>2;
66
67 .data :
68 {
Wolfgang Denkee8028b2010-11-21 20:55:42 +010069 *(.data*)
70 *(.sdata*)
Stefan Roese71665eb2008-03-03 17:27:02 +010071 }
72 _edata = .;
73 PROVIDE (edata = .);
74
75 . = .;
76 __u_boot_cmd_start = .;
77 .u_boot_cmd : { *(.u_boot_cmd) }
78 __u_boot_cmd_end = .;
79
80
81 . = .;
82 __start___ex_table = .;
83 __ex_table : { *(__ex_table) }
84 __stop___ex_table = .;
85
86 . = ALIGN(256);
87 __init_begin = .;
88 .text.init : { *(.text.init) }
89 .data.init : { *(.data.init) }
90 . = ALIGN(256);
91 __init_end = .;
92
93 __bss_start = .;
94 .bss (NOLOAD) :
95 {
Wolfgang Denkee8028b2010-11-21 20:55:42 +010096 *(.bss*)
97 *(.sbss*)
Stefan Roese71665eb2008-03-03 17:27:02 +010098 *(COMMON)
Selvamuthukumar9b827cf2008-10-16 22:54:03 +053099 . = ALIGN(4);
Stefan Roese71665eb2008-03-03 17:27:02 +0100100 }
101
Po-Yu Chuang44c6e652011-03-01 22:59:59 +0000102 __bss_end__ = . ;
Stefan Roese71665eb2008-03-03 17:27:02 +0100103 PROVIDE (end = .);
104}