blob: 7a4d9270dfa10a80c0fd9efb4d27f3fe9fd5fe43 [file] [log] [blame]
Rafal Jaworowski8993e542007-07-27 14:43:59 +02001/*
Wolfgang Denk566d49a2010-11-22 23:36:42 +01002 * (C) Copyright 2007-2010 DENX Software Engineering.
Rafal Jaworowski8993e542007-07-27 14:43:59 +02003 *
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
23OUTPUT_ARCH(powerpc)
24SECTIONS
25{
Rafal Jaworowski8993e542007-07-27 14:43:59 +020026 .text :
27 {
Wolfgang Denk566d49a2010-11-22 23:36:42 +010028 arch/powerpc/cpu/mpc512x/start.o (.text*)
29 *(.text*)
Rafal Jaworowski8993e542007-07-27 14:43:59 +020030 . = ALIGN(16);
Trent Piephof62fb992009-02-18 15:22:05 -080031 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
Rafal Jaworowski8993e542007-07-27 14:43:59 +020032 }
Rafal Jaworowski8993e542007-07-27 14:43:59 +020033
34 /* Read-write section, merged into data segment: */
35 . = (. + 0x0FFF) & 0xFFFFF000;
36 _erotext = .;
37 PROVIDE (erotext = .);
38 .reloc :
39 {
Rafal Jaworowski8993e542007-07-27 14:43:59 +020040 _GOT2_TABLE_ = .;
Wolfgang Denk566d49a2010-11-22 23:36:42 +010041 KEEP(*(.got2))
Joakim Tjernlund337f5f52010-12-03 17:30:37 +010042 KEEP(*(.got))
43 PROVIDE(_GLOBAL_OFFSET_TABLE_ = . + 4);
Rafal Jaworowski8993e542007-07-27 14:43:59 +020044 _FIXUP_TABLE_ = .;
Wolfgang Denk566d49a2010-11-22 23:36:42 +010045 KEEP(*(.fixup))
Rafal Jaworowski8993e542007-07-27 14:43:59 +020046 *(.fixup)
47 }
Joakim Tjernlund337f5f52010-12-03 17:30:37 +010048 __got2_entries = ((_GLOBAL_OFFSET_TABLE_ - _GOT2_TABLE_) >> 2) - 1;
Rafal Jaworowski8993e542007-07-27 14:43:59 +020049 __fixup_entries = (. - _FIXUP_TABLE_) >> 2;
50
51 .data :
52 {
Wolfgang Denk566d49a2010-11-22 23:36:42 +010053 *(.data*)
54 *(.sdata*)
Rafal Jaworowski8993e542007-07-27 14:43:59 +020055 }
56 _edata = .;
57 PROVIDE (edata = .);
58
59 . = .;
60 __u_boot_cmd_start = .;
61 .u_boot_cmd : { *(.u_boot_cmd) }
62 __u_boot_cmd_end = .;
63
64
65 . = .;
66 __start___ex_table = .;
67 __ex_table : { *(__ex_table) }
68 __stop___ex_table = .;
69
70 . = ALIGN(4096);
71 __init_begin = .;
72 .text.init : { *(.text.init) }
73 .data.init : { *(.data.init) }
74 . = ALIGN(4096);
75 __init_end = .;
76
77 __bss_start = .;
Wolfgang Denk64134f02008-01-12 20:31:39 +010078 .bss (NOLOAD) :
Rafal Jaworowski8993e542007-07-27 14:43:59 +020079 {
Wolfgang Denk566d49a2010-11-22 23:36:42 +010080 *(.bss*)
81 *(.sbss*)
Rafal Jaworowski8993e542007-07-27 14:43:59 +020082 *(COMMON)
Selvamuthukumar9b827cf2008-10-16 22:54:03 +053083 . = ALIGN(4);
Rafal Jaworowski8993e542007-07-27 14:43:59 +020084 }
Po-Yu Chuang44c6e652011-03-01 22:59:59 +000085 __bss_end__ = . ;
Rafal Jaworowski8993e542007-07-27 14:43:59 +020086 PROVIDE (end = .);
87}
88ENTRY(_start)