/* SPDX-License-Identifier: GPL-2.0-only */ /* This file is part of the coreboot project. */ #ifndef VARIANT_GPIO_H #define VARIANT_GPIO_H #include #include /* Flash Write Protect */ #define GPIO_PCH_WP GPP_E15 /* Recovery mode */ #define GPIO_REC_MODE GPP_E8 const struct pad_config *variant_gpio_table(size_t *num); const struct pad_config *variant_early_gpio_table(size_t *num); struct cros_gpio; const struct cros_gpio *variant_cros_gpios(size_t *num); #endif