coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
romstage.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef _SOC_ROMSTAGE_H_
4 #define _SOC_ROMSTAGE_H_
5 
6 #include <fsp/api.h>
7 
8 void mainboard_memory_init_params(FSPM_UPD *mupd);
9 void systemagent_early_init(void);
10 
11 /* Board type */
12 enum board_type {
17 };
18 
19 #endif /* _SOC_ROMSTAGE_H_ */
void mainboard_memory_init_params(struct romstage_params *params, MEMORY_INIT_UPD *memory_params)
Definition: romstage.c:18
void systemagent_early_init(void)
Definition: early_init.c:151
board_type
Definition: romstage.h:13
@ BOARD_TYPE_ULT_ULX
Definition: romstage.h:16
@ BOARD_TYPE_SERVER
Definition: romstage.h:18
@ BOARD_TYPE_MOBILE
Definition: romstage.h:14
@ BOARD_TYPE_DESKTOP
Definition: romstage.h:15