1 /* SPDX-License-Identifier: GPL-2.0-only */
4 #include <boot/coreboot_tables.h>
5 #include <ec/google/chromeec/ec.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)
27 int __weak
get_lid_switch(void)
32 int get_ec_is_trusted(void)
34 /* Do not have a Chrome EC involved in entering recovery mode;
35 Always return trusted. */