blob: 25512bc3b3b59ec39b6187c47caf16ab75d50802 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
/*
* This file is part of the coreboot project.
*
* Copyright (C) 2011 Sven Schnelle <svens@stackframe.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#ifndef EC_LENOVO_H8EC_CHIP_H
#define EC_LENOVO_H8EC_CHIP_H
struct ec_lenovo_h8_config {
u8 config0;
u8 config1;
u8 config2;
u8 config3;
u8 beepmask0;
u8 beepmask1;
u8 event0_enable;
u8 event1_enable;
u8 event2_enable;
u8 event3_enable;
u8 event4_enable;
u8 event5_enable;
u8 event6_enable;
u8 event7_enable;
u8 event8_enable;
u8 event9_enable;
u8 eventa_enable;
u8 eventb_enable;
u8 eventc_enable;
u8 eventd_enable;
u8 evente_enable;
u8 eventf_enable;
u8 has_keyboard_backlight;
u8 has_power_management_beeps;
u8 has_uwb;
u8 has_bdc_detection;
u8 has_wwan_detection;
u8 bdc_gpio_num;
u8 bdc_gpio_lvl;
u8 wwan_gpio_num;
u8 wwan_gpio_lvl;
};
#endif /* EC_LENOVO_H8EC_CHIP_H */
|