• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <cbmem.h>
4 #include <commonlib/helpers.h>
5 #include <soc/addressmap.h>
6 #include <soc/sdram.h>
7 #include <symbols.h>
8 
cbmem_top_chipset(void)9 uintptr_t cbmem_top_chipset(void)
10 {
11 	return MIN((uintptr_t)_dram + sdram_size_mb() * MiB, FU540_MAXDRAM);
12 }
13