blob: 4a933c87e9fb2623a5ebe2222d0f994484eba047 [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ébaudeaueeadd3f2014-08-21 15:43:11 +020024 *(.vectors)
Benoît Thébaudeau1a9a91d2013-04-11 09:36:03 +000025 arch/arm/cpu/armv7/start.o (.text*)
Rajeshwari Shinde78fbcc92012-07-03 20:02:53 +000026 *(.text*)
27 } >.sram
28 . = ALIGN(4);
29
30 .rodata : { *(SORT_BY_ALIGNMENT(.rodata*)) } >.sram
31 . = ALIGN(4);
32
33 .data : { *(SORT_BY_ALIGNMENT(.data*)) } >.sram
34 . = ALIGN(4);
35
Marek Vasut55675142012-10-12 10:27:03 +000036 .u_boot_list : {
Albert ARIBAUDef123c52013-02-25 00:59:00 +000037 KEEP(*(SORT(.u_boot_list*)));
Marek Vasut55675142012-10-12 10:27:03 +000038 } >.sram
39 . = ALIGN(4);
40
Rajeshwari Shinde78fbcc92012-07-03 20:02:53 +000041 /* Align .machine_param on 256 byte boundary for easier searching */
42 .machine_param ALIGN(0x100) : { *(.machine_param) } >.sram
43 . = ALIGN(4);
44
45 __image_copy_end = .;
Albert ARIBAUDd0b5d9d2014-02-22 17:53:42 +010046
47 .end :
48 {
49 *(.__end)
50 } >.sram
Rajeshwari Shinde78fbcc92012-07-03 20:02:53 +000051
52 .bss :
53 {
54 . = ALIGN(4);
55 __bss_start = .;
56 *(.bss*)
57 . = ALIGN(4);
Simon Glass3929fb02013-03-14 06:54:53 +000058 __bss_end = .;
Rajeshwari Shinde78fbcc92012-07-03 20:02:53 +000059 } >.sram
60}