/* SPDX-License-Identifier: GPL-2.0-only */ /* This file is part of the coreboot project. */ #ifndef __BASEBOARD_GPIO_H__ #define __BASEBOARD_GPIO_H__ #include #include /* EC in RW */ #define GPIO_EC_IN_RW GPP_C6 /* BIOS Flash Write Protect */ #define GPIO_PCH_WP GPP_C23 /* Memory configuration board straps */ #define GPIO_MEM_CONFIG_0 GPP_C12 #define GPIO_MEM_CONFIG_1 GPP_C13 #define GPIO_MEM_CONFIG_2 GPP_C14 #define GPIO_MEM_CONFIG_3 GPP_C15 /* EC wake is LAN_WAKE# which is a special DeepSX wake pin */ #define GPE_EC_WAKE GPE0_LAN_WAK /* eSPI virtual wire reporting */ #define EC_SCI_GPI GPE0_ESPI /* Power rail control signals */ #define EN_PP3300_DX_CAM GPP_C11 #define EN_CAM_PMIC_RST_L GPP_C10 #endif /* BASEBOARD_GPIO_H */