1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 3 #include <cbmem.h> 4 #include <soc/addressmap.h> 5 #include <soc/sdram.h> 6 #include <symbols.h> 7 cbmem_top_chipset(void)8uintptr_t cbmem_top_chipset(void) 9 { 10 /* Make sure not to overlap with reserved ATF scratchpad */ 11 return (uintptr_t)_dram + (sdram_size_mb() - 1) * MiB; 12 } 13