coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
cbmem.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <cbmem.h>
4 #include <fsp/util.h>
5 
6 void *cbmem_top_chipset(void)
7 {
8  struct range_entry tolum;
9 
11  return (void *)(uintptr_t)range_entry_end(&tolum);
12 }
void * cbmem_top_chipset(void)
Definition: cbmem.c:6
void fsp_find_bootloader_tolum(struct range_entry *re)
static resource_t range_entry_end(const struct range_entry *r)
Definition: memrange.h:50
unsigned long uintptr_t
Definition: stdint.h:21
Definition: memrange.h:24