blob: 30596031ec280aebfc21c026d47ab7478b01dbe6 [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.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#include <memlayout.h>
21
22#include <arch/header.ld>
23
24/* TODO: This should be revised by someone who understands the SoC better. */
25
26SECTIONS
27{
28 /* TODO: add SRAM_START(), SRAM_END() and REGION(reserved_sbl) */
29 TTB(0x2A05C000, 48K)
30
31 DRAM_START(0x40000000)
32 CBFS_CACHE(0x405CC000, 192K)
33 STACK(0x405FC000, 16K)
34 /* TODO: "256K bytes left for TZBSP"... what does that mean? */
35 BOOTBLOCK(0x40600000, 32K)
36 PRERAM_CBMEM_CONSOLE(0x40618000, 8K)
37 ROMSTAGE(0x40620000, 128K)
38 RAMSTAGE(0x40640000, 128K)
39 DMA_COHERENT(0x5A000000, 2M)
40}