blob: 9302856a957475ab62d1dbee22784d6fea291c36 [file] [log] [blame]
Albert ARIBAUD65cdd642013-02-25 00:58:58 +00001/*
2 * (C) Copyright 2002
3 * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
4 *
5 * (C) Copyright 2010
6 * Texas Instruments, <www.ti.com>
7 * Aneesh V <aneesh@ti.com>
8 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02009 * SPDX-License-Identifier: GPL-2.0+
Albert ARIBAUD65cdd642013-02-25 00:58:58 +000010 */
11
12MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,\
13 LENGTH = CONFIG_SPL_MAX_SIZE }
14MEMORY { .sdram : ORIGIN = CONFIG_SPL_BSS_START_ADDR, \
15 LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
16
17OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
18OUTPUT_ARCH(arm)
19ENTRY(_start)
20SECTIONS
21{
22 .text :
23 {
24 __start = .;
25 arch/arm/cpu/armv7/start.o (.text)
26 *(.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
35 .u_boot_list : {
Albert ARIBAUDef123c52013-02-25 00:59:00 +000036 KEEP(*(SORT(.u_boot_list*)));
Albert ARIBAUD65cdd642013-02-25 00:58:58 +000037 } >.sram
38
39 . = ALIGN(4);
40 __image_copy_end = .;
41 _end = .;
42
43 .bss :
44 {
45 . = ALIGN(4);
46 __bss_start = .;
47 *(.bss*)
48 . = ALIGN(4);
Tom Rini0ce033d2013-03-18 12:31:00 -040049 __bss_end = .;
Albert ARIBAUD65cdd642013-02-25 00:58:58 +000050 } >.sdram
51}