blob: b70e2a8f45eefdd337443af33412fa4847b08e84 [file] [log] [blame]
Angel Pons1ddb8942020-04-04 18:51:26 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Stefan Reinauer66287442013-06-19 15:54:19 -07003
4#include <stddef.h>
5#include <cbmem.h>
Julius Werner1ed0c8c2014-10-20 13:16:29 -07006#include <soc/cpu.h>
Stefan Reinauer66287442013-06-19 15:54:19 -07007
Arthur Heymans340e4b82019-10-23 17:25:58 +02008void *cbmem_top_chipset(void)
Stefan Reinauer66287442013-06-19 15:54:19 -07009{
10 return (void *)(get_fb_base_kb() * KiB);
11}