blob: 4afe0682bc02decff3ab20359a4746a67ce27d36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#include <cbmem.h>
#include <soc/cpu.h>
#include <stddef.h>
void *cbmem_top_chipset(void)
{
return (void *)(get_fb_base_kb() * KiB);
}
|