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