blob: 8e3b73ecf7859ede269071727a2c39d6e73af459 [file] [log] [blame]
Rajeshwari Shinde78fbcc92012-07-03 20:02:53 +00001/*
2 * (C) Copyright 2002
3 * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
4 *
5 * Copyright (C) 2012 Samsung Electronics
6 *
7 * Based on arch/arm/cpu/armv7/omap-common/u-boot-spl.lds
8 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02009 * SPDX-License-Identifier: GPL-2.0+
Rajeshwari Shinde78fbcc92012-07-03 20:02:53 +000010 */
11
12MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE, \
Albert ARIBAUDeac579d2013-04-12 05:14:33 +000013 LENGTH = CONFIG_SPL_MAX_FOOTPRINT }
Rajeshwari Shinde78fbcc92012-07-03 20:02:53 +000014
15OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
16OUTPUT_ARCH(arm)
17ENTRY(_start)
18
19SECTIONS
20{
21 .text :
22 {
23 __start = .;
Benoît Thébaudeau1a9a91d2013-04-11 09:36:03 +000024 arch/arm/cpu/armv7/start.o (.text*)
Rajeshwari Shinde78fbcc92012-07-03 20:02:53 +000025 *(.text*)
26 } >.sram
27 . = ALIGN(4);
28
29 .rodata : { *(SORT_BY_ALIGNMENT(.rodata*)) } >.sram
30 . = ALIGN(4);
31
32 .data : { *(SORT_BY_ALIGNMENT(.data*)) } >.sram
33 . = ALIGN(4);
34
Marek Vasut55675142012-10-12 10:27:03 +000035 .u_boot_list : {
Albert ARIBAUDef123c52013-02-25 00:59:00 +000036 KEEP(*(SORT(.u_boot_list*)));
Marek Vasut55675142012-10-12 10:27:03 +000037 } >.sram
38 . = ALIGN(4);
39
Rajeshwari Shinde78fbcc92012-07-03 20:02:53 +000040 /* Align .machine_param on 256 byte boundary for easier searching */
41 .machine_param ALIGN(0x100) : { *(.machine_param) } >.sram
42 . = ALIGN(4);
43
44 __image_copy_end = .;
45 _end = .;
46
47 .bss :
48 {
49 . = ALIGN(4);
50 __bss_start = .;
51 *(.bss*)
52 . = ALIGN(4);
Simon Glass3929fb02013-03-14 06:54:53 +000053 __bss_end = .;
Rajeshwari Shinde78fbcc92012-07-03 20:02:53 +000054 } >.sram
55}