coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
preload.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <bootstate.h>
4 #include <fsp/api.h>
5 
6 static void start_fsps_preload(void *unused)
7 {
8  preload_fsps();
9 }
10 
@ BS_PRE_DEVICE
Definition: bootstate.h:78
@ BS_ON_ENTRY
Definition: bootstate.h:95
BOOT_STATE_INIT_ENTRY(BS_PRE_DEVICE, BS_ON_ENTRY, start_fsps_preload, NULL)
static void start_fsps_preload(void *unused)
Definition: preload.c:6
void preload_fsps(void)
Definition: silicon_init.c:233
#define NULL
Definition: stddef.h:19