coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
ec.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef STOUT_EC_H
4 #define STOUT_EC_H
5 
6 #define EC_SCI_GPI 6 /* GPIO6 is EC_SCI# */
7 #define EC_SMI_GPI 1 /* GPIO1 is EC_SMI# */
8 
9 #define EC_SMI_LID_CLOSED 0x2B
10 
11 #ifndef __ACPI__
12 void stout_ec_init(void);
13 void stout_ec_finalize_smm(void);
14 #endif
15 
16 #endif // STOUT_EC_H
void stout_ec_init(void)
Definition: ec.c:12
void stout_ec_finalize_smm(void)
Definition: ec.c:41