Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 2 | /* |
3 | * (C) Copyright 2002 | ||||
4 | * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de> | ||||
5 | * | ||||
6 | * (C) Copyright 2010 | ||||
7 | * Texas Instruments, <www.ti.com> | ||||
8 | * Aneesh V <aneesh@ti.com> | ||||
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 9 | */ |
10 | |||||
Tom Rini | 2f41ade | 2019-01-22 17:09:26 -0500 | [diff] [blame] | 11 | MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE,\ |
12 | LENGTH = IMAGE_MAX_SIZE } | ||||
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 13 | MEMORY { .sdram : ORIGIN = CONFIG_SPL_BSS_START_ADDR, \ |
14 | LENGTH = CONFIG_SPL_BSS_MAX_SIZE } | ||||
15 | |||||
16 | OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm") | ||||
17 | OUTPUT_ARCH(arm) | ||||
18 | ENTRY(_start) | ||||
19 | SECTIONS | ||||
20 | { | ||||
21 | .text : | ||||
22 | { | ||||
Pavel Machek | 9f8a6e7 | 2012-08-30 19:20:22 +0200 | [diff] [blame] | 23 | __start = .; |
Benoît Thébaudeau | eeadd3f | 2014-08-21 15:43:11 +0200 | [diff] [blame] | 24 | *(.vectors) |
Benoît Thébaudeau | 1a9a91d | 2013-04-11 09:36:03 +0000 | [diff] [blame] | 25 | arch/arm/cpu/armv7/start.o (.text*) |
Pavel Machek | 9f8a6e7 | 2012-08-30 19:20:22 +0200 | [diff] [blame] | 26 | *(.text*) |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 27 | } >.sram |
28 | |||||
29 | . = ALIGN(4); | ||||
30 | .rodata : { *(SORT_BY_ALIGNMENT(.rodata*)) } >.sram | ||||
31 | |||||
32 | . = ALIGN(4); | ||||
33 | .data : { *(SORT_BY_ALIGNMENT(.data*)) } >.sram | ||||
Marek Vasut | 5567514 | 2012-10-12 10:27:03 +0000 | [diff] [blame] | 34 | |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 35 | . = ALIGN(4); |
Heiko Schocher | 6789e84 | 2013-10-22 11:03:18 +0200 | [diff] [blame] | 36 | .u_boot_list : { |
Tom Rini | f8a4826 | 2016-03-15 17:56:29 -0400 | [diff] [blame] | 37 | KEEP(*(SORT(.u_boot_list*))); |
Heiko Schocher | 6789e84 | 2013-10-22 11:03:18 +0200 | [diff] [blame] | 38 | } >.sram |
Tom Rini | 5e995c0 | 2013-11-15 12:20:33 -0500 | [diff] [blame] | 39 | |
Heiko Schocher | 6789e84 | 2013-10-22 11:03:18 +0200 | [diff] [blame] | 40 | . = ALIGN(4); |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 41 | __image_copy_end = .; |
Albert ARIBAUD | d0b5d9d | 2014-02-22 17:53:42 +0100 | [diff] [blame] | 42 | |
43 | .end : | ||||
44 | { | ||||
45 | *(.__end) | ||||
46 | } | ||||
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 47 | |
Lokesh Vutla | 4d451c0 | 2017-02-10 20:37:17 +0530 | [diff] [blame] | 48 | _image_binary_end = .; |
49 | |||||
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 50 | .bss : |
51 | { | ||||
52 | . = ALIGN(4); | ||||
53 | __bss_start = .; | ||||
54 | *(.bss*) | ||||
55 | . = ALIGN(4); | ||||
Simon Glass | 3929fb0 | 2013-03-14 06:54:53 +0000 | [diff] [blame] | 56 | __bss_end = .; |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 57 | } >.sdram |
58 | } |