blob: 55ba70a65353356a19111d0d223652d13c67f18d [file] [log] [blame]
Julius Wernerec5e5e02014-08-20 15:29:56 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2013 Alexandru Gagniuc <mr.nuke.me@gmail.com>
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 SRAM_START(0x0)
23 /* eGON.BT0: 32 bytes */
24 BOOTBLOCK(0x20, 0x5fa0)
25 STACK(0x6000, 8K)
26 SRAM_END(0x8000)
27
28 DRAM_START(0x40000000)
29 RAMSTAGE(0x40000000, 16M)
30 ROMSTAGE(0x41000000, 108K)
31}