blob: f9c680ded946d7220fcfd986d31cf4b95eb9ce2f [file] [log] [blame]
Angel Pons8a3453f2020-04-02 23:48:19 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Arthur Heymanscf5af242019-11-04 21:24:28 +01003
4#include <cbmem.h>
5#include <fsp/util.h>
6
7void *cbmem_top_chipset(void)
8{
9 struct range_entry tolum;
10
11 fsp_find_bootloader_tolum(&tolum);
12 return (void *)(uintptr_t)range_entry_end(&tolum);
13}