soc/intel/ptl: Update ME specification version to 21
[coreboot.git] / src / mainboard / emulation / qemu-power8 / cbmem.c
blob1c0c62b3a6dba598daf997daaf899a3a65d7c66e
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <cbmem.h>
5 uintptr_t cbmem_top_chipset(void)
7 /* Top of cbmem is at lowest usable DRAM address below 4GiB. */
8 /* For now, last 1M of 4G */
9 return (1ULL << 32) - 1048576;