blob: 1c0c62b3a6dba598daf997daaf899a3a65d7c66e [file] [log] [blame]
Angel Pons585495e2020-04-03 01:21:38 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Ronald G. Minnich98312442016-02-12 22:37:48 +00002
3#include <cbmem.h>
4
Elyes Haouas799c3212022-11-09 14:00:44 +01005uintptr_t cbmem_top_chipset(void)
Ronald G. Minnich98312442016-02-12 22:37:48 +00006{
7 /* Top of cbmem is at lowest usable DRAM address below 4GiB. */
8 /* For now, last 1M of 4G */
Elyes Haouas799c3212022-11-09 14:00:44 +01009 return (1ULL << 32) - 1048576;
Ronald G. Minnich98312442016-02-12 22:37:48 +000010}