blob: 86f3667556ca9aa31eed19eed0e0f19ad49c2e0f [file] [log] [blame]
Ronald G. Minnich66bea522016-10-25 19:11:07 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2016 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
16#include <memlayout.h>
17
18#include <arch/header.ld>
19
20#define START 0x80000000
21
22SECTIONS
23{
24 DRAM_START(START)
25 BOOTBLOCK(START, 64K)
26 STACK(START + 8M, 64K)
27 ROMSTAGE(START + 8M + 64K, 128K)
28 PRERAM_CBMEM_CONSOLE(START + 8M + 192k, 8K)
Jonathan Neuschäfer5135f112018-04-17 14:00:34 +020029 /* hole at (START + 8M + 200K, 56K) */
Ronald G. Minnich66bea522016-10-25 19:11:07 -070030 RAMSTAGE(START + 8M + 256K, 256K)
31}