blob: 5d7f3f578beff86ada546ddac950ec2e66363561 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Ian Campbell140d8322014-05-05 11:52:30 +01002/*
3 * (C) Copyright 2012
4 * Allwinner Technology Co., Ltd. <www.allwinnertech.com>
5 * Tom Cubie <tangliang@allwinnertech.com>
6 *
7 * Based on omap-common/u-boot-spl.lds:
8 *
9 * (C) Copyright 2002
10 * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
11 *
12 * (C) Copyright 2010
13 * Texas Instruments, <www.ti.com>
14 * Aneesh V <aneesh@ti.com>
Ian Campbell140d8322014-05-05 11:52:30 +010015 */
16MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,\
17 LENGTH = CONFIG_SPL_MAX_SIZE }
18MEMORY { .sdram : ORIGIN = CONFIG_SPL_BSS_START_ADDR, \
19 LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
20
21OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
22OUTPUT_ARCH(arm)
23ENTRY(_start)
24SECTIONS
25{
26 .text :
27 {
28 __start = .;
Hans de Goede85089a22014-06-09 11:36:54 +020029 *(.vectors)
Ian Campbell140d8322014-05-05 11:52:30 +010030 arch/arm/cpu/armv7/start.o (.text)
31 *(.text*)
32 } > .sram
33
34 . = ALIGN(4);
35 .rodata : { *(SORT_BY_ALIGNMENT(.rodata*)) } >.sram
36
37 . = ALIGN(4);
38 .data : { *(SORT_BY_ALIGNMENT(.data*)) } >.sram
39
40 . = ALIGN(4);
Hans de Goede3352b222014-06-13 22:55:49 +020041 .u_boot_list : {
42 KEEP(*(SORT(.u_boot_list*)));
43 } > .sram
44
45 . = ALIGN(4);
Ian Campbell140d8322014-05-05 11:52:30 +010046 __image_copy_end = .;
47 _end = .;
48
49 .bss :
50 {
51 . = ALIGN(4);
52 __bss_start = .;
53 *(.bss*)
54 . = ALIGN(4);
55 __bss_end = .;
56 } > .sdram
57}