blob: b84d1c8a20a8a8454cd804eba457edcad19890e8 [file] [log] [blame]
Angel Pons585495e2020-04-03 01:21:38 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Ronald G. Minnich98312442016-02-12 22:37:48 +00003
4#include <cbmem.h>
5
Arthur Heymans340e4b82019-10-23 17:25:58 +02006void *cbmem_top_chipset(void)
Ronald G. Minnich98312442016-02-12 22:37:48 +00007{
8 /* Top of cbmem is at lowest usable DRAM address below 4GiB. */
9 /* For now, last 1M of 4G */
10 void *ptr = (void *) ((1ULL << 32) - 1048576);
11 return ptr;
12}