mainboard/intel/avenuecity_crb: Update full IIO configuration
[coreboot2.git] / src / mainboard / google / smaug / chromeos.c
blobd74df8267e9d6f2150d073341b16b503c8de59a6
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <bootmode.h>
4 #include <boot/coreboot_tables.h>
6 #include "gpio.h"
8 void fill_lb_gpios(struct lb_gpios *gpios)
10 struct lb_gpio chromeos_gpios[] = {
11 {POWER_BUTTON, ACTIVE_LOW, -1, "power"},
12 {EC_IN_RW, ACTIVE_HIGH, -1, "EC in RW"},
13 {AP_SYS_RESET_L, ACTIVE_LOW, -1, "reset"},
15 lb_add_gpios(gpios, chromeos_gpios, ARRAY_SIZE(chromeos_gpios));
18 int get_write_protect_state(void)
20 return !gpio_get(WRITE_PROTECT_L);
23 int get_ec_is_trusted(void)
25 /* EC is trusted if not in RW. */
26 return !gpio_get(EC_IN_RW);