2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2014-05-05 10:52:30 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2012
|
|
|
|
* Allwinner Technology Co., Ltd. <www.allwinnertech.com>
|
|
|
|
* Tom Cubie <tangliang@allwinnertech.com>
|
|
|
|
*
|
|
|
|
* Based on omap-common/u-boot-spl.lds:
|
|
|
|
*
|
|
|
|
* (C) Copyright 2002
|
|
|
|
* Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
|
|
|
|
*
|
|
|
|
* (C) Copyright 2010
|
|
|
|
* Texas Instruments, <www.ti.com>
|
|
|
|
* Aneesh V <aneesh@ti.com>
|
|
|
|
*/
|
2019-01-22 22:09:26 +00:00
|
|
|
MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE,\
|
|
|
|
LENGTH = IMAGE_MAX_SIZE }
|
2014-05-05 10:52:30 +00:00
|
|
|
MEMORY { .sdram : ORIGIN = CONFIG_SPL_BSS_START_ADDR, \
|
|
|
|
LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
|
|
|
|
|
|
|
|
OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
|
|
|
|
OUTPUT_ARCH(arm)
|
|
|
|
ENTRY(_start)
|
|
|
|
SECTIONS
|
|
|
|
{
|
|
|
|
.text :
|
|
|
|
{
|
|
|
|
__start = .;
|
2014-06-09 09:36:54 +00:00
|
|
|
*(.vectors)
|
2014-05-05 10:52:30 +00:00
|
|
|
arch/arm/cpu/armv7/start.o (.text)
|
|
|
|
*(.text*)
|
|
|
|
} > .sram
|
|
|
|
|
|
|
|
. = ALIGN(4);
|
|
|
|
.rodata : { *(SORT_BY_ALIGNMENT(.rodata*)) } >.sram
|
|
|
|
|
|
|
|
. = ALIGN(4);
|
|
|
|
.data : { *(SORT_BY_ALIGNMENT(.data*)) } >.sram
|
|
|
|
|
2014-06-13 20:55:49 +00:00
|
|
|
. = ALIGN(4);
|
|
|
|
.u_boot_list : {
|
|
|
|
KEEP(*(SORT(.u_boot_list*)));
|
|
|
|
} > .sram
|
|
|
|
|
2014-05-05 10:52:30 +00:00
|
|
|
. = ALIGN(4);
|
|
|
|
__image_copy_end = .;
|
|
|
|
_end = .;
|
|
|
|
|
|
|
|
.bss :
|
|
|
|
{
|
|
|
|
. = ALIGN(4);
|
|
|
|
__bss_start = .;
|
|
|
|
*(.bss*)
|
|
|
|
. = ALIGN(4);
|
|
|
|
__bss_end = .;
|
|
|
|
} > .sdram
|
|
|
|
}
|