blob: 176d256e1748993830460d8dec52da5720af7688 [file] [log] [blame]
/* SPDX-License-Identifier: GPL-2.0-only */
#include <cbmem.h>
#include <fsp/util.h>
uintptr_t cbmem_top_chipset(void)
{
struct range_entry tolum;
fsp_find_bootloader_tolum(&tolum);
return range_entry_end(&tolum);
}