Files
system76-coreboot/src/mainboard/google/stout/ec.h
Angel Pons 2e8a4b0498 mb/google/stout: Use SPDX for GPL-2.0-only files
Done with sed and God Lines. Only done for C-like code for now.

Change-Id: Ic3314eb6137a6fc9fa1f90685f37223ca1580cb9
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/40197
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
2020-04-06 13:55:08 +00:00

18 lines
366 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#ifndef STOUT_EC_H
#define STOUT_EC_H
#define EC_SCI_GPI 6 /* GPIO6 is EC_SCI# */
#define EC_SMI_GPI 1 /* GPIO1 is EC_SMI# */
#define EC_SMI_LID_CLOSED 0x2B
#ifndef __ACPI__
void stout_ec_init(void);
void stout_ec_finalize_smm(void);
#endif
#endif // STOUT_EC_H