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-or-later */
2 
3 #ifndef _SOC_APL_GPIO_H_
4 #define _SOC_APL_GPIO_H_
5 
6 #if CONFIG(SOC_INTEL_GEMINILAKE)
7 #include <soc/gpio_glk.h>
8 #else
9 #include <soc/gpio_apl.h>
10 #endif
11 #include <intelblocks/gpio.h>/* intelblocks/gpio.h depends on definitions in
12  soc/gpio_glk.h and soc/gpio_apl.h */
13 
14 /*
15  * APL/GLK doesn't support dynamic GPIO PM hence GPIO community
16  * MISCCFG register doesn't have PM bits
17  */
18 #define MISCCFG_GPIO_PM_CONFIG_BITS 0
19 
20 #endif