payloads/edk2: Disable the CPU Timer Lib unless supported
[coreboot.git] / src / mainboard / lenovo / g505s / ec.c
blob44eb8cf1c7ac4509908ea18162a9a95753cc1f32
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 #include "ec.h"
4 #include <ec/compal/ene932/ec.h>
6 /* The keyboard matrix tells the EC how the keyboard is wired internally */
7 static void set_keyboard_matrix_us(void)
9 ec_kbc_write_cmd(0x59);
10 ec_kbc_write_ib(0xE5);
13 /* Tell EC to operate in APM mode. Events generate SMIs instead of SCIs */
14 static void enter_apm_mode(void)
16 ec_kbc_write_cmd(0x59);
17 ec_kbc_write_ib(0xE9);
20 void lenovo_g505s_ec_init(void)
22 set_keyboard_matrix_us();
25 * The EC has a special "blinking Caps Lock LED" mode which it normally
26 * enters when it believes the OS is not responding. It occasionally
27 * disables battery charging when in this mode, although other
28 * functionality is unaffected. Although the EC starts in APM mode by
29 * default, it only leaves the "blinking Caps Lock LED" mode after
30 * receiving the following command.
32 enter_apm_mode();