Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Srikanth Srinivasan | 949a2d5 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 2 | /* |
Kumar Gala | e727a36 | 2011-01-12 02:48:53 -0600 | [diff] [blame] | 3 | * Copyright 2007-2009, 2011 Freescale Semiconductor, Inc. |
Srikanth Srinivasan | 949a2d5 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 4 | */ |
5 | |||||
Masahiro Yamada | cd1b58e | 2014-04-28 10:17:10 +0900 | [diff] [blame] | 6 | #include "config.h" |
Kumar Gala | e727a36 | 2011-01-12 02:48:53 -0600 | [diff] [blame] | 7 | |
8 | #ifdef CONFIG_RESET_VECTOR_ADDRESS | ||||
9 | #define RESET_VECTOR_ADDRESS CONFIG_RESET_VECTOR_ADDRESS | ||||
10 | #else | ||||
Kumar Gala | 6472af8 | 2009-09-09 11:40:41 -0500 | [diff] [blame] | 11 | #define RESET_VECTOR_ADDRESS 0xfffffffc |
12 | #endif | ||||
13 | |||||
Srikanth Srinivasan | 949a2d5 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 14 | OUTPUT_ARCH(powerpc) |
Pali Rohár | 3f9f1bd | 2022-04-03 00:05:09 +0200 | [diff] [blame] | 15 | ENTRY(_start) |
Peter Tyser | 1047c16 | 2010-09-29 14:05:56 -0500 | [diff] [blame] | 16 | |
Srikanth Srinivasan | 949a2d5 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 17 | SECTIONS |
18 | { | ||||
19 | /* Read-only sections, merged into text segment: */ | ||||
Pali Rohár | 18209f7 | 2022-06-16 14:19:44 +0200 | [diff] [blame] | 20 | .text : |
Pali Rohár | d61e3c2 | 2022-04-05 15:12:35 +0200 | [diff] [blame] | 21 | { |
Tom Rini | 667dd4f | 2022-06-10 22:59:37 -0400 | [diff] [blame] | 22 | #if CONFIG_IS_ENABLED(SYS_MPC85XX_NO_RESETVEC) |
Pali Rohár | d61e3c2 | 2022-04-05 15:12:35 +0200 | [diff] [blame] | 23 | KEEP(arch/powerpc/cpu/mpc85xx/start.o (.bootpg)) |
Pali Rohár | d61e3c2 | 2022-04-05 15:12:35 +0200 | [diff] [blame] | 24 | #endif |
Peter Tyser | 1047c16 | 2010-09-29 14:05:56 -0500 | [diff] [blame] | 25 | *(.text*) |
Pali Rohár | 18209f7 | 2022-06-16 14:19:44 +0200 | [diff] [blame] | 26 | } |
Srikanth Srinivasan | 949a2d5 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 27 | _etext = .; |
28 | PROVIDE (etext = .); | ||||
29 | .rodata : | ||||
30 | { | ||||
Srikanth Srinivasan | 949a2d5 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 31 | *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) |
Pali Rohár | 18209f7 | 2022-06-16 14:19:44 +0200 | [diff] [blame] | 32 | } |
Srikanth Srinivasan | 949a2d5 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 33 | |
34 | /* Read-write section, merged into data segment: */ | ||||
35 | . = (. + 0x00FF) & 0xFFFFFF00; | ||||
36 | _erotext = .; | ||||
37 | PROVIDE (erotext = .); | ||||
38 | .reloc : | ||||
39 | { | ||||
Srikanth Srinivasan | 949a2d5 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 40 | _GOT2_TABLE_ = .; |
Peter Tyser | 1047c16 | 2010-09-29 14:05:56 -0500 | [diff] [blame] | 41 | KEEP(*(.got2)) |
Joakim Tjernlund | 42126a6 | 2010-12-03 17:30:37 +0100 | [diff] [blame] | 42 | KEEP(*(.got)) |
Srikanth Srinivasan | 949a2d5 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 43 | _FIXUP_TABLE_ = .; |
Peter Tyser | 1047c16 | 2010-09-29 14:05:56 -0500 | [diff] [blame] | 44 | KEEP(*(.fixup)) |
Srikanth Srinivasan | 949a2d5 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 45 | } |
Joakim Tjernlund | 42126a6 | 2010-12-03 17:30:37 +0100 | [diff] [blame] | 46 | __got2_entries = ((_GLOBAL_OFFSET_TABLE_ - _GOT2_TABLE_) >> 2) - 1; |
Srikanth Srinivasan | 949a2d5 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 47 | __fixup_entries = (. - _FIXUP_TABLE_) >> 2; |
48 | |||||
49 | .data : | ||||
50 | { | ||||
Peter Tyser | 1047c16 | 2010-09-29 14:05:56 -0500 | [diff] [blame] | 51 | *(.data*) |
52 | *(.sdata*) | ||||
Srikanth Srinivasan | 949a2d5 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 53 | } |
54 | _edata = .; | ||||
55 | PROVIDE (edata = .); | ||||
56 | |||||
57 | . = .; | ||||
Srikanth Srinivasan | 949a2d5 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 58 | |
Marek Vasut | 607092a | 2012-10-12 10:27:03 +0000 | [diff] [blame] | 59 | . = ALIGN(4); |
Andrew Scull | 5a9095c | 2022-05-30 10:00:04 +0000 | [diff] [blame] | 60 | __u_boot_list : { |
61 | KEEP(*(SORT(__u_boot_list*))); | ||||
Marek Vasut | 607092a | 2012-10-12 10:27:03 +0000 | [diff] [blame] | 62 | } |
63 | |||||
Srikanth Srinivasan | 949a2d5 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 64 | . = .; |
65 | __start___ex_table = .; | ||||
66 | __ex_table : { *(__ex_table) } | ||||
67 | __stop___ex_table = .; | ||||
68 | |||||
Pali Rohár | 0486cb6 | 2022-04-05 15:12:30 +0200 | [diff] [blame] | 69 | . = ALIGN(4); |
Srikanth Srinivasan | 949a2d5 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 70 | __init_begin = .; |
71 | .text.init : { *(.text.init) } | ||||
72 | .data.init : { *(.data.init) } | ||||
Pali Rohár | 0486cb6 | 2022-04-05 15:12:30 +0200 | [diff] [blame] | 73 | . = ALIGN(4); |
Srikanth Srinivasan | 949a2d5 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 74 | __init_end = .; |
Jagdish Gediya | 910e1ae | 2018-09-03 21:35:05 +0530 | [diff] [blame] | 75 | _end = .; |
Srikanth Srinivasan | 949a2d5 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 76 | |
Tom Rini | 667dd4f | 2022-06-10 22:59:37 -0400 | [diff] [blame] | 77 | #if !CONFIG_IS_ENABLED(SYS_MPC85XX_NO_RESETVEC) |
Kumar Gala | 6472af8 | 2009-09-09 11:40:41 -0500 | [diff] [blame] | 78 | .bootpg RESET_VECTOR_ADDRESS - 0xffc : |
Srikanth Srinivasan | 949a2d5 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 79 | { |
Stefan Roese | 88fbf93 | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 80 | arch/powerpc/cpu/mpc85xx/start.o (.bootpg) |
Pali Rohár | 18209f7 | 2022-06-16 14:19:44 +0200 | [diff] [blame] | 81 | } = 0xffff |
Srikanth Srinivasan | 949a2d5 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 82 | |
Kumar Gala | 6472af8 | 2009-09-09 11:40:41 -0500 | [diff] [blame] | 83 | .resetvec RESET_VECTOR_ADDRESS : |
Srikanth Srinivasan | 949a2d5 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 84 | { |
Peter Tyser | 1047c16 | 2010-09-29 14:05:56 -0500 | [diff] [blame] | 85 | KEEP(*(.resetvec)) |
Pali Rohár | 18209f7 | 2022-06-16 14:19:44 +0200 | [diff] [blame] | 86 | } = 0xffff |
Srikanth Srinivasan | 949a2d5 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 87 | |
Kumar Gala | 6472af8 | 2009-09-09 11:40:41 -0500 | [diff] [blame] | 88 | . = RESET_VECTOR_ADDRESS + 0x4; |
Srikanth Srinivasan | 949a2d5 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 89 | |
Peter Tyser | 430445f | 2009-10-07 11:45:00 -0500 | [diff] [blame] | 90 | /* |
91 | * Make sure that the bss segment isn't linked at 0x0, otherwise its | ||||
92 | * address won't be updated during relocation fixups. Note that | ||||
93 | * this is a temporary fix. Code to dynamically the fixup the bss | ||||
94 | * location will be added in the future. When the bss relocation | ||||
95 | * fixup code is present this workaround should be removed. | ||||
96 | */ | ||||
97 | #if (RESET_VECTOR_ADDRESS == 0xfffffffc) | ||||
98 | . |= 0x10; | ||||
99 | #endif | ||||
Ying Zhang | 0d4f544 | 2013-05-20 14:07:23 +0800 | [diff] [blame] | 100 | #endif |
Peter Tyser | 430445f | 2009-10-07 11:45:00 -0500 | [diff] [blame] | 101 | |
Srikanth Srinivasan | 949a2d5 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 102 | __bss_start = .; |
103 | .bss (NOLOAD) : | ||||
104 | { | ||||
Peter Tyser | 1047c16 | 2010-09-29 14:05:56 -0500 | [diff] [blame] | 105 | *(.sbss*) |
106 | *(.bss*) | ||||
Srikanth Srinivasan | 949a2d5 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 107 | *(COMMON) |
Pali Rohár | 18209f7 | 2022-06-16 14:19:44 +0200 | [diff] [blame] | 108 | } |
Srikanth Srinivasan | 949a2d5 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 109 | |
110 | . = ALIGN(4); | ||||
Simon Glass | ed70c8f | 2013-03-14 06:54:53 +0000 | [diff] [blame] | 111 | __bss_end = . ; |
Srikanth Srinivasan | 949a2d5 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 112 | PROVIDE (end = .); |
113 | } |