blob: f87f000524c929154c6f380272e370be3a244e5b [file] [log] [blame]
Julius Wernerec5e5e02014-08-20 15:29:56 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2014 Google Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#include <memlayout.h>
21
22#include <arch/header.ld>
23
24SECTIONS
25{
26 DRAM_START(0x40000000)
27 BOOTBLOCK(0x402f0400, 20K)
28 ROMSTAGE(0x402f5400, 90K)
29 STACK(0x4030be00, 4K)
30 RAMSTAGE(0x80200000, 192K)
31
32#ifdef OMAP_HEADER
33 .header : {
34 *(.header);
35 } : to_load
36
37 /DISCARD/ : {
38 *(*)
39 }
40#endif
41}
42