summaryrefslogtreecommitdiffstats
path: root/src/cpu/ti/am335x/cbmem.c
blob: d0d9f618faa0a94817656fb60a36fbd96ea7dd67 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#include <stddef.h>
#include <cbmem.h>
#include <symbols.h>

void *cbmem_top_chipset(void)
{
	return _dram + (CONFIG_DRAM_SIZE_MB << 20);
}