blob: 5c423a05bbc26428190221463f3baac02b6ad4fd (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include <cbmem.h>
#include <symbols.h>
#include <ramdetect.h>
uintptr_t cbmem_top_chipset(void)
{
return (uintptr_t)_dram + (probe_ramsize((uintptr_t)_dram, CONFIG_DRAM_SIZE_MB) * MiB);
}
|