summaryrefslogtreecommitdiff
path: root/src/ec/starlabs/merlin/variants/glkr/ecdefs.h
blob: ecc117c9907cdceb53611411082ee3c9dc69c527 (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
/* SPDX-License-Identifier: GPL-2.0-only */

#include <assert.h>
#include <stdint.h>

/*
 * EC communication interface for Nuvoton Embedded Controller.
 */

#ifndef _EC_STARLABS_GLKR_EC_DEFS_H
#define _EC_STARLABS_GLKR_EC_DEFS_H

/* Nuvoton chip ID byte values. */
#define NUVOTON_CHIPID_VAL	0x0004

/* EC RAM offsets. */
#define ECRAM_TRACKPAD_STATE	0x14
#define ECRAM_KBL_STATE		0x16
#define ECRAM_KBL_BRIGHTNESS	0x17
#define ECRAM_KBL_TIMEOUT	0x12
#define ECRAM_FN_LOCK_STATE	0x15
#define ECRAM_FN_CTRL_REVERSE	0x13
#define ECRAM_MAX_CHARGE	dead_code_t(uint8_t)
#define ECRAM_FAN_MODE		dead_code_t(uint8_t)
#define ECRAM_FAST_CHARGE       0x18
#define ECRAM_MIRROR_FLAG	dead_code_t(uint8_t)

#endif