summaryrefslogtreecommitdiffstats
path: root/src/mainboard/google/stout/ec.h
blob: 7212c84a86b73bde868a5cde388431aa15b446eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* 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