blob: da0f4a5fe8c3e42c1b5a309dcedd3311c7b60dc4 [file] [log] [blame]
Ronald G. Minnich98312442016-02-12 22:37:48 +00001/*
2 * This file is part of the coreboot project.
3 *
Timothy Pearson31875762016-03-09 17:22:10 -06004 * Copyright (C) 2016 Raptor Engineering, LLC
Ronald G. Minnich98312442016-02-12 22:37:48 +00005 * Copyright 2014 Google Inc.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 */
16
17#include <memlayout.h>
18
19#include <arch/header.ld>
20
21// TODO: fill in these blanks for Power8.
22SECTIONS
23{
24 DRAM_START(0x0)
Timothy Pearson31875762016-03-09 17:22:10 -060025 BOOTBLOCK(0x100, 64K)
Ronald G. Minnich98312442016-02-12 22:37:48 +000026 ROMSTAGE(0x20000, 128K)
27 STACK(0x40000, 0x3ff00)
28 PRERAM_CBMEM_CONSOLE(0x80000, 8K)
29 RAMSTAGE(0x100000, 16M)
30}