H8: add missing License Header
[coreboot.git] / src / ec / lenovo / h8 / chip.h
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2011 Sven Schnelle <svens@stackframe.org>
5  *
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.
9  *
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.
14  *
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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  */
19
20 #ifndef EC_LENOVO_H8EC_CHIP_H
21 #define EC_LENOVO_H8EC_CHIP_H
22
23 extern struct chip_operations ec_lenovo_h8_ops;
24 struct ec_lenovo_h8_config {
25
26         u8 config0;
27         u8 config1;
28         u8 config2;
29         u8 config3;
30
31         u8 beepmask0;
32         u8 beepmask1;
33
34         u8 event0_enable;
35         u8 event1_enable;
36         u8 event2_enable;
37         u8 event3_enable;
38         u8 event4_enable;
39         u8 event5_enable;
40         u8 event6_enable;
41         u8 event7_enable;
42         u8 event8_enable;
43         u8 event9_enable;
44         u8 eventa_enable;
45         u8 eventb_enable;
46         u8 eventc_enable;
47         u8 eventd_enable;
48         u8 evente_enable;
49         u8 eventf_enable;
50
51         u8 trackpoint_enable;
52         u8 wlan_enable;
53         u8 wwan_enable;
54 };
55 #endif