blob: 1c0c62b3a6dba598daf997daaf899a3a65d7c66e [file] [log] [blame]
/* SPDX-License-Identifier: GPL-2.0-only */
#include <cbmem.h>
uintptr_t cbmem_top_chipset(void)
{
/* Top of cbmem is at lowest usable DRAM address below 4GiB. */
/* For now, last 1M of 4G */
return (1ULL << 32) - 1048576;
}