coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
mainboard.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <cpu/x86/smm.h>
4 #include <device/device.h>
6 #include <acpi/acpi.h>
8 
10 {
11  /* Call SMM finalize() handlers before resume */
13 }
14 
15 // mainboard_enable is executed as first thing after
16 // enumerate_buses().
17 
18 static void mainboard_enable(struct device *dev)
19 {
21 }
22 
25 };
struct chip_operations mainboard_ops
Definition: mainboard.c:19
void install_intel_vga_int15_handler(int active_lfp_, int pfit_, int display_, int panel_type_)
Definition: int15.c:101
@ GMA_INT15_BOOT_DISPLAY_DEFAULT
Definition: int15.h:6
@ GMA_INT15_ACTIVE_LFP_EDP
Definition: int15.h:27
@ GMA_INT15_PANEL_FIT_CENTERING
Definition: int15.h:18
void mainboard_suspend_resume(void)
Definition: mainboard.c:10
#define APM_CNT_FINALIZE
Definition: smm.h:24
static void mainboard_enable(struct device *dev)
Definition: mainboard.c:18
int apm_control(u8 cmd)
Definition: smi_trigger.c:31
void(* enable_dev)(struct device *dev)
Definition: device.h:24
Definition: device.h:107