blob: f83988fd7e6a1182e991ef2d76e037d8598ea053 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Stefano Babicd41924a2012-10-10 21:11:43 +00002/*
3 * (C) Copyright 2002
4 * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
5 *
6 * (C) Copyright 2010
7 * Texas Instruments, <www.ti.com>
8 * Aneesh V <aneesh@ti.com>
Stefano Babicd41924a2012-10-10 21:11:43 +00009 */
10
Tom Rini2f41ade2019-01-22 17:09:26 -050011MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE,\
12 LENGTH = IMAGE_MAX_SIZE }
Stefano Babicd41924a2012-10-10 21:11:43 +000013MEMORY { .sdram : ORIGIN = CONFIG_SPL_BSS_START_ADDR, \
14 LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
15
16OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
17OUTPUT_ARCH(arm)
18ENTRY(_start)
19SECTIONS
20{
21 .text :
22 {
23 __start = .;
Benoît Thébaudeaueeadd3f2014-08-21 15:43:11 +020024 *(.vectors)
Benoît Thébaudeau1a9a91d2013-04-11 09:36:03 +000025 arch/arm/cpu/arm1136/start.o (.text*)
Stefano Babicd41924a2012-10-10 21:11:43 +000026 *(.text*)
27 } >.sram
28
29 . = ALIGN(4);
30 .rodata : { *(SORT_BY_ALIGNMENT(.rodata*)) } >.sram
31
32 . = ALIGN(4);
33 .data : { *(SORT_BY_ALIGNMENT(.data*)) } >.sram
34 . = ALIGN(4);
35 __image_copy_end = .;
Albert ARIBAUDd0b5d9d2014-02-22 17:53:42 +010036
37 .end :
38 {
39 *(.__end)
40 }
Stefano Babicd41924a2012-10-10 21:11:43 +000041
42 .bss :
43 {
44 . = ALIGN(4);
45 __bss_start = .;
46 *(.bss*)
47 . = ALIGN(4);
Simon Glass3929fb02013-03-14 06:54:53 +000048 __bss_end = .;
Stefano Babicd41924a2012-10-10 21:11:43 +000049 } >.sdram
50}