payloads/edk2: Disable the CPU Timer Lib unless supported
[coreboot.git] / src / mainboard / google / octopus / chromeos.c
blob42eeeeef6737eea7148792a1dfbd335459875c16
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 {GPIO_EC_IN_RW, ACTIVE_HIGH, gpio_get(GPIO_EC_IN_RW),
18 "EC in RW"},
20 lb_add_gpios(gpios, chromeos_gpios, ARRAY_SIZE(chromeos_gpios));
23 int get_write_protect_state(void)
25 return gpio_get(GPIO_PCH_WP);
28 int get_ec_is_trusted(void)
30 /* EC is trusted if not in RW. */
31 return !gpio_get(GPIO_EC_IN_RW);