blob: 9efb710f344b9485d8394f8e30a120e5a61d4ff2 [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.
Julius Wernerec5e5e02014-08-20 15:29:56 -070014 */
15
16#include <memlayout.h>
17
18#include <arch/header.ld>
19
20SECTIONS
21{
22 DRAM_START(0x40000000)
23 BOOTBLOCK(0x402f0400, 20K)
24 ROMSTAGE(0x402f5400, 90K)
25 STACK(0x4030be00, 4K)
26 RAMSTAGE(0x80200000, 192K)
27
Julius Wernerc01a9ab2018-04-27 15:19:51 -070028 /* TODO: Implement MMU support and move TTB to a better location. */
29 TTB(0x81000000, 16K)
30
Julius Wernerec5e5e02014-08-20 15:29:56 -070031#ifdef OMAP_HEADER
32 .header : {
33 *(.header);
34 } : to_load
35
36 /DISCARD/ : {
37 *(*)
38 }
39#endif
40}