payloads/edk2: Disable the CPU Timer Lib unless supported
[coreboot.git] / src / mainboard / intel / glkrvp / chromeos.c
blobbc27b27f31953783e1b063da7f4f4c4439adce3a
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <bootmode.h>
4 #include <boot/coreboot_tables.h>
5 #include <ec/google/chromeec/ec.h>
6 #include <gpio.h>
7 #include <types.h>
8 #include <soc/gpio.h>
9 #include <variant/gpio.h>
11 void fill_lb_gpios(struct lb_gpios *gpios)
13 struct lb_gpio chromeos_gpios[] = {
14 {-1, ACTIVE_HIGH, get_lid_switch(), "lid"},
15 {-1, ACTIVE_HIGH, 0, "power"},
16 {-1, ACTIVE_HIGH, gfx_get_init_done(), "oprom"},
17 {-1, ACTIVE_HIGH, 0, "EC in RW"},
19 lb_add_gpios(gpios, chromeos_gpios, ARRAY_SIZE(chromeos_gpios));
22 int get_write_protect_state(void)
24 return 0;
27 int __weak get_lid_switch(void)
29 return -1;
32 int get_ec_is_trusted(void)
34 /* Do not have a Chrome EC involved in entering recovery mode;
35 Always return trusted. */
36 return 1;