1 /* SPDX-License-Identifier: GPL-2.0-only */
4 #include <boot/coreboot_tables.h>
5 #include <device/pci_ops.h>
6 #include <device/device.h>
7 #include <southbridge/intel/bd82x6x/pch.h>
8 #include <southbridge/intel/common/gpio.h>
10 #include <vendorcode/google/chromeos/chromeos.h>
13 void fill_lb_gpios(struct lb_gpios
*gpios
)
15 struct lb_gpio chromeos_gpios
[] = {
16 /* Recovery: GPIO42 = CHP3_REC_MODE# */
17 {GPIO_REC_MODE
, ACTIVE_LOW
, !get_recovery_mode_switch(),
20 /* Hard code the lid switch GPIO to open. */
21 {100, ACTIVE_HIGH
, 1, "lid"},
24 {101, ACTIVE_LOW
, get_power_switch(), "power"},
26 /* Did we load the VGA Option ROM? */
27 /* -1 indicates that this is a pseudo GPIO */
28 {-1, ACTIVE_HIGH
, gfx_get_init_done(), "oprom"},
30 lb_add_gpios(gpios
, chromeos_gpios
, ARRAY_SIZE(chromeos_gpios
));
33 int get_write_protect_state(void)
35 return get_gpio(GPIO_SPI_WP
);
38 int get_recovery_mode_switch(void)
40 return !get_gpio(GPIO_REC_MODE
);
43 int get_power_switch(void)
45 const pci_devfn_t dev
= PCI_DEV(0, 0x1f, 0);
46 u16 gen_pmcon_1
= pci_s_read_config32(dev
, GEN_PMCON_1
);
47 return (gen_pmcon_1
>> 9) & 1;
50 static const struct cros_gpio cros_gpios
[] = {
51 CROS_GPIO_REC_AL(GPIO_REC_MODE
, CROS_GPIO_DEVICE_NAME
),
52 CROS_GPIO_WP_AH(GPIO_SPI_WP
, CROS_GPIO_DEVICE_NAME
),
55 DECLARE_CROS_GPIOS(cros_gpios
);