coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
ecdefs.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <assert.h>
4 #include <stdint.h>
5 
6 /*
7  * EC communication interface for Nuvoton Embedded Controller.
8  */
9 
10 #ifndef _EC_STARLABS_GLKR_EC_DEFS_H
11 #define _EC_STARLABS_GLKR_EC_DEFS_H
12 
13 /* Nuvoton chip ID byte values. */
14 #define NUVOTON_CHIPID_VAL 0x0004
15 
16 /* EC RAM offsets. */
17 #define ECRAM_TRACKPAD_STATE 0x14
18 #define ECRAM_KBL_STATE 0x16
19 #define ECRAM_KBL_BRIGHTNESS 0x17
20 #define ECRAM_KBL_TIMEOUT 0x12
21 #define ECRAM_FN_LOCK_STATE 0x15
22 #define ECRAM_FN_CTRL_REVERSE 0x13
23 #define ECRAM_MAX_CHARGE dead_code_t(uint8_t)
24 #define ECRAM_FAN_MODE dead_code_t(uint8_t)
25 
26 #endif