summaryrefslogtreecommitdiffstats
path: root/src/soc/cavium/cn81xx/cbmem.c
blob: d50fe165191c4bbc789fa1c325d3007c89a1206c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* SPDX-License-Identifier: GPL-2.0-only */

#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);
}