aboutsummaryrefslogtreecommitdiff
path: root/src/soc/cavium/cn81xx/cbmem.c
blob: 4760a1d3b6c08d63a483562ac4a3ebc9903a078b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#include <cbmem.h>
#include <soc/addressmap.h>
#include <soc/sdram.h>
#include <symbols.h>

void *cbmem_top_chipset(void)
{
	/* Make sure not to overlap with reserved ATF scratchpad */
	return (void *)((uintptr_t)_dram + (sdram_size_mb() - 1) * MiB);
}