blob: d60ba8afb8745ccc6efdc3f8cf842ed797359137 [file] [log] [blame]
Ronald G. Minnich2149ad32013-02-14 15:14:58 -08001/*
Ronald G. Minnich2149ad32013-02-14 15:14:58 -08002 *
3 * Copyright (C) 2013 Google, Inc.
4 * Copyright (C) 2008 Advanced Micro Devices, Inc.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 */
29
Ronald G. Minnich2149ad32013-02-14 15:14:58 -080030OUTPUT_FORMAT("elf32-littlearm","elf32-littlearm", "elf32-littlearm")
31OUTPUT_ARCH(arm)
32
33ENTRY(_entry)
34
Ronald G. Minnich2149ad32013-02-14 15:14:58 -080035SECTIONS
36{
Stefan Reinauer82184452016-03-12 16:18:17 -080037 . = CONFIG_LP_BASE_ADDRESS;
Ronald G. Minnich2149ad32013-02-14 15:14:58 -080038
39 . = ALIGN(16);
40 _start = .;
41
42 .text : {
Yi Chou32ea2ab2023-11-18 12:12:01 +080043 _text = .;
Ronald G. Minnich2149ad32013-02-14 15:14:58 -080044 *(.text._entry)
45 *(.text)
46 *(.text.*)
Yi Chou32ea2ab2023-11-18 12:12:01 +080047 _etext = .;
Ronald G. Minnich2149ad32013-02-14 15:14:58 -080048 }
49
50 .rodata : {
Yi Chou32ea2ab2023-11-18 12:12:01 +080051 _rodata = .;
Ronald G. Minnich2149ad32013-02-14 15:14:58 -080052 *(.rodata)
53 *(.rodata.*)
Yi Chou32ea2ab2023-11-18 12:12:01 +080054 _erodata = .;
Ronald G. Minnich2149ad32013-02-14 15:14:58 -080055 }
56
57 .data : {
Yi Chou32ea2ab2023-11-18 12:12:01 +080058 _data = .;
Ronald G. Minnich2149ad32013-02-14 15:14:58 -080059 *(.data)
60 *(.data.*)
Yi Chou32ea2ab2023-11-18 12:12:01 +080061 _edata = .;
Ronald G. Minnich2149ad32013-02-14 15:14:58 -080062 }
63
Ronald G. Minnich2149ad32013-02-14 15:14:58 -080064 .bss : {
Yi Chou32ea2ab2023-11-18 12:12:01 +080065 _bss = .;
Ronald G. Minnich2149ad32013-02-14 15:14:58 -080066 *(.sbss)
67 *(.sbss.*)
68 *(.bss)
69 *(.bss.*)
70 *(COMMON)
Yi Chou32ea2ab2023-11-18 12:12:01 +080071 _ebss = .;
Ronald G. Minnich2149ad32013-02-14 15:14:58 -080072
73 /* Stack and heap */
74
75 . = ALIGN(16);
76 _heap = .;
Stefan Reinauer82184452016-03-12 16:18:17 -080077 . += CONFIG_LP_HEAP_SIZE;
Ronald G. Minnich2149ad32013-02-14 15:14:58 -080078 . = ALIGN(16);
79 _eheap = .;
80
Yi Chou32ea2ab2023-11-18 12:12:01 +080081 _stack = .;
Stefan Reinauer82184452016-03-12 16:18:17 -080082 . += CONFIG_LP_STACK_SIZE;
Ronald G. Minnich2149ad32013-02-14 15:14:58 -080083 . = ALIGN(16);
Yi Chou32ea2ab2023-11-18 12:12:01 +080084 _estack = .;
Ronald G. Minnich2149ad32013-02-14 15:14:58 -080085 }
86
87 _end = .;
88
89 /DISCARD/ : {
90 *(.comment)
91 *(.note*)
92 }
93}