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 BUTTERFLY_EC_H
4 #define BUTTERFLY_EC_H
5 
6 #define EC_SCI_GPI 13 /* GPIO13 is EC_SCI# */
7 
8 /* EC SMI sources TODO: MLR- make defines */
9 
10 #ifndef __ACPI__
11 extern void butterfly_ec_init(void);
12 #endif
13 
14 #endif // BUTTERFLY_EC_H
void butterfly_ec_init(void)
Definition: ec.c:7