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/romstage.h>
7 #include <fsp/util.h>
8 #include <soc/pm.h>
9 
10 void gfx_init(void);
11 void punit_init(void);
12 
13 /* romstage.c functions */
14 int chipset_prev_sleep_state(const struct chipset_power_state *ps);
15 
16 /* Values for FSP's PcdMemoryTypeEnable */
17 #define MEM_DDR3 0
18 #define MEM_LPDDR3 1
19 
20 #endif /* _SOC_ROMSTAGE_H_ */
void gfx_init(void)
Definition: gfx.c:8
void punit_init(void)
Definition: pmc.c:17
int chipset_prev_sleep_state(const struct chipset_power_state *ps)
Definition: romstage.c:60