coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
gpio.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef VARIANT_GPIO_H
4 #define VARIANT_GPIO_H
5 
6 #include <soc/gpe.h>
7 #include <soc/gpio.h>
8 
9 /* Flash Write Protect */
10 #define GPIO_PCH_WP GPP_E15
11 
12 /* Recovery mode */
13 #define GPIO_REC_MODE GPP_E8
14 
15 const struct pad_config *variant_gpio_table(size_t *num);
16 const struct pad_config *variant_early_gpio_table(size_t *num);
17 
18 #endif
const struct pad_config * variant_gpio_table(size_t *num)
Definition: gpio.c:406
const struct pad_config * variant_early_gpio_table(size_t *num)
Definition: gpio.c:204