Remove address from GPLv2 headers
[coreboot.git] / src / mainboard / google / stout / ec.h
blob33332fe46ae9101aef1cd318e4418e4cf32d6d27
1 /*
2 * This file is part of the coreboot project.
4 * Copyright (C) 2011 The Chromium OS Authors. All rights reserved.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc.
20 #ifndef STOUT_EC_H
21 #define STOUT_EC_H
23 #define EC_SCI_GPI 6 /* GPIO6 is EC_SCI# */
24 #define EC_SMI_GPI 1 /* GPIO1 is EC_SMI# */
26 #define EC_SMI_LID_CLOSED 0x2B
28 #ifndef __ACPI__
29 extern void stout_ec_init(void);
30 #endif
32 #ifdef __SMM__
33 void stout_ec_finalize_smm(void);
34 #endif
36 #endif // STOUT_EC_H