aboutsummaryrefslogtreecommitdiff
path: root/src/soc/cavium/cn81xx/include/soc/memlayout.ld
blob: 0400d2985e688f5904611d376fed33adbb96d179 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
 * This file is part of the coreboot project.
 *
 * Copyright 2016 Rockchip Inc.
 * Copyright 2017-present Facebook, Inc.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 of the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#include <memlayout.h>
#include <soc/addressmap.h>
#include <arch/header.ld>

SECTIONS
{
	DRAM_START(0x00000000)
	/* FIXME: Place BL31 in first 1MiB */

	/* bootblock-custom.S does setup CAR from SRAM_START to SRAM_END */
	SRAM_START(BOOTROM_OFFSET)
	STACK(BOOTROM_OFFSET, 16K)
	TIMESTAMP(BOOTROM_OFFSET + 0x4000, 4K)
	PRERAM_CBFS_CACHE(BOOTROM_OFFSET + 0x6000, 8K)
	PRERAM_CBMEM_CONSOLE(BOOTROM_OFFSET + 0x8000, 8K)

	BOOTBLOCK(BOOTROM_OFFSET + 0x20000, 64K)
	ROMSTAGE(BOOTROM_OFFSET + 0x40000, 256K)
	SRAM_END(BOOTROM_OFFSET + 0x80000)
	TTB(BOOTROM_OFFSET + 0x80000, 512K)
	RAMSTAGE(BOOTROM_OFFSET + 0x100000, 512K)
	/* Stack for secondary CPUs */
	REGION(stack_sec, BOOTROM_OFFSET + 0x180000,
	       CONFIG_MAX_CPUS * CONFIG_STACK_SIZE, 0x1000)

	/* Leave some space for the payload */
	POSTRAM_CBFS_CACHE(0x2000000, 16M)
}