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 _SOC_TIGERLAKE_GPIO_H_
4 #define _SOC_TIGERLAKE_GPIO_H_
5 
6 #if CONFIG(SOC_INTEL_TIGERLAKE_PCH_H)
7 #include <soc/gpio_defs_pch_h.h>
8 #else
9 #include <soc/gpio_defs.h>
10 #define CROS_GPIO_DEVICE_NAME "INT34C5:00"
11 #endif
12 #include <intelblocks/gpio.h>
13 
14 /* Enable GPIO community power management configuration */
15 #define MISCCFG_GPIO_PM_CONFIG_BITS (MISCCFG_GPVNNREQEN | \
16  MISCCFG_GPPGCBDPCGEN | MISCCFG_GPSIDEDPCGEN | \
17  MISCCFG_GPRCOMPCDLCGEN | MISCCFG_GPRTCDLCGEN | MISCCFG_GSXSLCGEN \
18  | MISCCFG_GPDPCGEN | MISCCFG_GPDLCGEN)
19 
20 #endif