blob: e885b7c16051debb4b73611cf4db45f2dbddcd78 [file] [log] [blame]
Andre Schwarz1f2463d2010-04-01 21:26:55 +02001/*
2 * (C) Copyright 2003-2004
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 * (C) Copyright 2010
5 * André Schwarz, Matrix Vision GmbH, as@matrix-vision.de
6 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Andre Schwarz1f2463d2010-04-01 21:26:55 +02008 */
9
10OUTPUT_ARCH(powerpc)
11
12SECTIONS
13{
14 /* Read-only sections, merged into text segment: */
Andre Schwarz1f2463d2010-04-01 21:26:55 +020015 .text :
16 {
17 /* WARNING - the following is hand-optimized to fit within */
18 /* the first two sectors (=8KB) of our S29GL flash chip */
Wolfgang Denk085ecde2010-11-23 13:20:22 +010019 arch/powerpc/cpu/mpc5xxx/start.o (.text*)
20 arch/powerpc/cpu/mpc5xxx/traps.o (.text*)
Masahiro Yamadae2906a52013-11-11 14:36:00 +090021 board/matrix_vision/common/built-in.o (.text*)
Andre Schwarz1f2463d2010-04-01 21:26:55 +020022
23 /* This is only needed to force failure if size of above code will ever */
24 /* increase and grow into reserved space. */
25 . = ALIGN(0x2000); /* location counter has to be 0x4000 now */
26 . += 0x4000; /* ->0x8000, i.e. move to env_offset */
27
28 . = env_offset; /* ld error as soon as above ALIGN misplaces lc */
29 common/env_embedded.o (.ppcenv)
30
Wolfgang Denk085ecde2010-11-23 13:20:22 +010031 *(.text*)
Andre Schwarz1f2463d2010-04-01 21:26:55 +020032 . = ALIGN(16);
Andre Schwarz1f2463d2010-04-01 21:26:55 +020033 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
34 }
Andre Schwarz1f2463d2010-04-01 21:26:55 +020035
36 /* Read-write section, merged into data segment: */
37 . = (. + 0x0FFF) & 0xFFFFF000;
38 _erotext = .;
39 PROVIDE (erotext = .);
40 .reloc :
41 {
Andre Schwarz1f2463d2010-04-01 21:26:55 +020042 _GOT2_TABLE_ = .;
Wolfgang Denk085ecde2010-11-23 13:20:22 +010043 KEEP(*(.got2))
Joakim Tjernlund9d8fbd12011-04-20 14:22:59 +020044 KEEP(*(.got))
45 PROVIDE(_GLOBAL_OFFSET_TABLE_ = . + 4);
Andre Schwarz1f2463d2010-04-01 21:26:55 +020046 _FIXUP_TABLE_ = .;
Wolfgang Denk085ecde2010-11-23 13:20:22 +010047 KEEP(*(.fixup))
Andre Schwarz1f2463d2010-04-01 21:26:55 +020048 }
Joakim Tjernlundc1fa1b72011-04-24 10:29:32 +020049 __got2_entries = ((_GLOBAL_OFFSET_TABLE_ - _GOT2_TABLE_) >> 2) - 1;
Andre Schwarz1f2463d2010-04-01 21:26:55 +020050 __fixup_entries = (. - _FIXUP_TABLE_) >> 2;
51
52 .data :
53 {
Wolfgang Denk085ecde2010-11-23 13:20:22 +010054 *(.data*)
55 *(.sdata*)
Andre Schwarz1f2463d2010-04-01 21:26:55 +020056 }
57 _edata = .;
58 PROVIDE (edata = .);
59
60 . = .;
Andre Schwarz1f2463d2010-04-01 21:26:55 +020061
Marek Vasut55675142012-10-12 10:27:03 +000062 . = ALIGN(4);
63 .u_boot_list : {
Albert ARIBAUDef123c52013-02-25 00:59:00 +000064 KEEP(*(SORT(.u_boot_list*)));
Marek Vasut55675142012-10-12 10:27:03 +000065 }
66
Andre Schwarz1f2463d2010-04-01 21:26:55 +020067
68 . = .;
69 __start___ex_table = .;
70 __ex_table : { *(__ex_table) }
71 __stop___ex_table = .;
72
73 . = ALIGN(4096);
74 __init_begin = .;
75 .text.init : { *(.text.init) }
76 .data.init : { *(.data.init) }
77 . = ALIGN(4096);
78 __init_end = .;
79
80 __bss_start = .;
81 .bss (NOLOAD) :
82 {
Wolfgang Denk085ecde2010-11-23 13:20:22 +010083 *(.bss*)
84 *(.sbss*)
Andre Schwarz1f2463d2010-04-01 21:26:55 +020085 . = ALIGN(4);
86 }
Simon Glass3929fb02013-03-14 06:54:53 +000087 __bss_end = . ;
Andre Schwarz1f2463d2010-04-01 21:26:55 +020088 PROVIDE (end = .);
89}