• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/* SPDX-License-Identifier: GPL-2.0-only */
2
3#include <memlayout.h>
4
5#include <arch/header.ld>
6
7// TODO: fill in these blanks for Power8.
8SECTIONS
9{
10	DRAM_START(0x0)
11	BOOTBLOCK(0x100, 64K)
12	ROMSTAGE(0x20000, 128K)
13	STACK(0x40000, 0x3ff00)
14	PRERAM_CBMEM_CONSOLE(0x80000, 8K)
15	FMAP_CACHE(0x82000, 2K)
16	CBFS_MCACHE(0x82800, 8K)
17	RAMSTAGE(0x100000, 16M)
18}
19