blob: 1c0c62b3a6dba598daf997daaf899a3a65d7c66e (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* 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;
}
|