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 <soc/cpu.h>
5 
6 void *cbmem_top_chipset(void)
7 {
8  return (void *)(get_fb_base_kb() * KiB);
9 }
#define KiB
Definition: helpers.h:75
void * cbmem_top_chipset(void)
Definition: cbmem.c:6
static u32 get_fb_base_kb(void)
Definition: cpu.h:66