summaryrefslogtreecommitdiffstats
path: root/src/soc/samsung/exynos5250/cbmem.c
blob: b70e2a8f45eefdd337443af33412fa4847b08e84 (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 <stddef.h>
#include <cbmem.h>
#include <soc/cpu.h>

void *cbmem_top_chipset(void)
{
	return (void *)(get_fb_base_kb() * KiB);
}