• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <cbmem.h>
4 #include <fsp/util.h>
5 
cbmem_top_chipset(void)6 uintptr_t cbmem_top_chipset(void)
7 {
8 	struct range_entry tolum;
9 
10 	fsp_find_bootloader_tolum(&tolum);
11 	return range_entry_end(&tolum);
12 }
13