soc/intel: Rename and move MISCCFG_GPIO_PM_CONFIG_BITS definition to soc/gpio.h
Lists of changes: 1. Rename MISCCFG_ENABLE_GPIO_PM_CONFIG -> MISCCFG_GPIO_PM_CONFIG_BITS 2. Move MISCCFG_GPIO_PM_CONFIG_BITS definition from intelblock/gpio.h to soc/gpio.h. Refer to detailed description below to understand the motivation behind this change. An advanced GPIO PM capabilities has been introduced since CNP PCH, refer to 'include/intelblock/gpio.h' for detailed GPIO PM bit definitions. Now with TGP PCH, additional bits are defined in the MISCCFG register for GPIO PM control. This results in different SoCs supporting different number of bits. The bits defined in earlier platforms (CNL, CML, ICL) are present on TGL, JSL and ADL too. Hence, refactor the common GPIO code to keep the bit definitions in intelblock/gpio.h, but the definition of MISCCFG_GPIO_PM_CONFIG_BITS is moved to soc/gpio.h so that each SoC can provide this as per hardware support. TEST=On ADL, TGL and JSL platform. Without this CL : GPIO COMM 0 MISCCFG:0xC0 (Bit 6 and 7 enable) With this CL : GPIO COMM 0 MISCCFG: 0x00 (Bit 6 and 7 disable) Change-Id: Ie027cbd7b99b39752941384339a34f8995c10c94 Signed-off-by: Subrata Banik <subrata.banik@intel.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/51767 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Furquan Shaikh <furquan@google.com>
This commit is contained in:
parent
299ee183c4
commit
2ccc0a4d9f
|
@ -204,11 +204,11 @@ chip soc/intel/cannonlake
|
|||
register "gpio_override_pm" = "1"
|
||||
|
||||
# GPIO community PM configuration
|
||||
register "gpio_pm[COMM_0]" = "MISCCFG_ENABLE_GPIO_PM_CONFIG"
|
||||
register "gpio_pm[COMM_0]" = "MISCCFG_GPIO_PM_CONFIG_BITS"
|
||||
register "gpio_pm[COMM_1]" = "MISCCFG_GPSIDEDPCGEN | MISCCFG_GPRTCDLCGEN | MISCCFG_GSXSLCGEN | MISCCFG_GPDPCGEN | MISCCFG_GPDLCGEN"
|
||||
register "gpio_pm[COMM_2]" = "MISCCFG_ENABLE_GPIO_PM_CONFIG"
|
||||
register "gpio_pm[COMM_3]" = "MISCCFG_ENABLE_GPIO_PM_CONFIG"
|
||||
register "gpio_pm[COMM_4]" = "MISCCFG_ENABLE_GPIO_PM_CONFIG"
|
||||
register "gpio_pm[COMM_2]" = "MISCCFG_GPIO_PM_CONFIG_BITS"
|
||||
register "gpio_pm[COMM_3]" = "MISCCFG_GPIO_PM_CONFIG_BITS"
|
||||
register "gpio_pm[COMM_4]" = "MISCCFG_GPIO_PM_CONFIG_BITS"
|
||||
|
||||
device cpu_cluster 0 on
|
||||
device lapic 0 on end
|
||||
|
|
|
@ -209,11 +209,11 @@ chip soc/intel/cannonlake
|
|||
register "gpio_override_pm" = "1"
|
||||
|
||||
# GPIO community PM configuration
|
||||
register "gpio_pm[COMM_0]" = "MISCCFG_ENABLE_GPIO_PM_CONFIG"
|
||||
register "gpio_pm[COMM_0]" = "MISCCFG_GPIO_PM_CONFIG_BITS"
|
||||
register "gpio_pm[COMM_1]" = "MISCCFG_GPSIDEDPCGEN | MISCCFG_GPRTCDLCGEN | MISCCFG_GSXSLCGEN | MISCCFG_GPDPCGEN | MISCCFG_GPDLCGEN"
|
||||
register "gpio_pm[COMM_2]" = "MISCCFG_ENABLE_GPIO_PM_CONFIG"
|
||||
register "gpio_pm[COMM_3]" = "MISCCFG_ENABLE_GPIO_PM_CONFIG"
|
||||
register "gpio_pm[COMM_4]" = "MISCCFG_ENABLE_GPIO_PM_CONFIG"
|
||||
register "gpio_pm[COMM_2]" = "MISCCFG_GPIO_PM_CONFIG_BITS"
|
||||
register "gpio_pm[COMM_3]" = "MISCCFG_GPIO_PM_CONFIG_BITS"
|
||||
register "gpio_pm[COMM_4]" = "MISCCFG_GPIO_PM_CONFIG_BITS"
|
||||
|
||||
device cpu_cluster 0 on
|
||||
device lapic 0 on end
|
||||
|
|
|
@ -16,7 +16,7 @@ Method (PGPM, 1, Serialized)
|
|||
*/
|
||||
Method (MPTS, 1, Serialized)
|
||||
{
|
||||
PGPM (MISCCFG_ENABLE_GPIO_PM_CONFIG)
|
||||
PGPM (MISCCFG_GPIO_PM_CONFIG_BITS)
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -36,7 +36,7 @@ Method (MS0X, 1, Serialized)
|
|||
{
|
||||
If (Arg0 == 1) {
|
||||
/* S0ix Entry */
|
||||
PGPM (MISCCFG_ENABLE_GPIO_PM_CONFIG)
|
||||
PGPM (MISCCFG_GPIO_PM_CONFIG_BITS)
|
||||
} Else {
|
||||
/* S0ix Exit */
|
||||
PGPM (0)
|
||||
|
|
|
@ -166,6 +166,6 @@ Method (EGPM, 0, Serialized)
|
|||
/* Enable PM bits */
|
||||
For (Local0 = 0, Local0 < TOTAL_GPIO_COMM, Local0++)
|
||||
{
|
||||
CGPM (Local0, MISCCFG_ENABLE_GPIO_PM_CONFIG)
|
||||
CGPM (Local0, MISCCFG_GPIO_PM_CONFIG_BITS)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -119,7 +119,7 @@ static void soc_fill_gpio_pm_configuration(void)
|
|||
memcpy(value, config->gpio_pm, sizeof(uint8_t) *
|
||||
TOTAL_GPIO_COMM);
|
||||
else
|
||||
memset(value, MISCCFG_ENABLE_GPIO_PM_CONFIG, sizeof(uint8_t) *
|
||||
memset(value, MISCCFG_GPIO_PM_CONFIG_BITS, sizeof(uint8_t) *
|
||||
TOTAL_GPIO_COMM);
|
||||
|
||||
gpio_pm_configure(value, TOTAL_GPIO_COMM);
|
||||
|
|
|
@ -9,4 +9,10 @@
|
|||
#define CROS_GPIO_NAME "INTC1055"
|
||||
#define CROS_GPIO_DEVICE_NAME "INTC1055:00"
|
||||
|
||||
/* Enable GPIO community power management configuration */
|
||||
#define MISCCFG_GPIO_PM_CONFIG_BITS (MISCCFG_GPVNNREQEN | \
|
||||
MISCCFG_GPPGCBDPCGEN | MISCCFG_GPSIDEDPCGEN | \
|
||||
MISCCFG_GPRCOMPCDLCGEN | MISCCFG_GPRTCDLCGEN | MISCCFG_GSXSLCGEN \
|
||||
| MISCCFG_GPDPCGEN | MISCCFG_GPDLCGEN)
|
||||
|
||||
#endif
|
||||
|
|
|
@ -10,4 +10,11 @@
|
|||
#endif
|
||||
#include <intelblocks/gpio.h>/* intelblocks/gpio.h depends on definitions in
|
||||
soc/gpio_glk.h and soc/gpio_apl.h */
|
||||
|
||||
/*
|
||||
* APL/GLK doesn't support dynamic GPIO PM hence GPIO community
|
||||
* MISCCFG register doesn't have PM bits
|
||||
*/
|
||||
#define MISCCFG_GPIO_PM_CONFIG_BITS 0
|
||||
|
||||
#endif
|
||||
|
|
|
@ -138,9 +138,9 @@ Method (CGPM, 2, Serialized)
|
|||
Store (GPID (Arg0), Local0)
|
||||
If (LNotEqual (Local0, 0)) {
|
||||
/* Mask off current PM bits */
|
||||
PCRA (Local0, GPIO_MISCCFG, Not (MISCCFG_ENABLE_GPIO_PM_CONFIG))
|
||||
PCRA (Local0, GPIO_MISCCFG, Not (MISCCFG_GPIO_PM_CONFIG_BITS))
|
||||
/* Mask in requested bits */
|
||||
PCRO (Local0, GPIO_MISCCFG, And (Arg1, MISCCFG_ENABLE_GPIO_PM_CONFIG))
|
||||
PCRO (Local0, GPIO_MISCCFG, And (Arg1, MISCCFG_GPIO_PM_CONFIG_BITS))
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -181,6 +181,6 @@ Method (EGPM, 0, Serialized)
|
|||
/* Enable PM bits */
|
||||
For (Local0 = 0, Local0 < TOTAL_GPIO_COMM, Local0++)
|
||||
{
|
||||
CGPM (Local0, MISCCFG_ENABLE_GPIO_PM_CONFIG)
|
||||
CGPM (Local0, MISCCFG_GPIO_PM_CONFIG_BITS)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -17,7 +17,7 @@ void soc_gpio_pm_configuration(void)
|
|||
memcpy(value, config->gpio_pm, sizeof(uint8_t) *
|
||||
TOTAL_GPIO_COMM);
|
||||
else
|
||||
memset(value, MISCCFG_ENABLE_GPIO_PM_CONFIG, sizeof(uint8_t) *
|
||||
memset(value, MISCCFG_GPIO_PM_CONFIG_BITS, sizeof(uint8_t) *
|
||||
TOTAL_GPIO_COMM);
|
||||
|
||||
gpio_pm_configure(value, TOTAL_GPIO_COMM);
|
||||
|
|
|
@ -12,6 +12,11 @@
|
|||
#endif
|
||||
#include <intelblocks/gpio.h>
|
||||
|
||||
/* Enable GPIO community power management configuration */
|
||||
#define MISCCFG_GPIO_PM_CONFIG_BITS (MISCCFG_GPSIDEDPCGEN | \
|
||||
MISCCFG_GPRCOMPCDLCGEN | MISCCFG_GPRTCDLCGEN | MISCCFG_GSXSLCGEN \
|
||||
| MISCCFG_GPDPCGEN | MISCCFG_GPDLCGEN)
|
||||
|
||||
#ifndef __ACPI__
|
||||
struct pad_config;
|
||||
void cnl_configure_pads(const struct pad_config *cfg, size_t num_pads);
|
||||
|
|
|
@ -11,8 +11,8 @@ Method (CGPM, 2, Serialized)
|
|||
Local0 = GPID (Arg0)
|
||||
If (Local0 != 0) {
|
||||
/* Mask off current PM bits */
|
||||
PCRA (Local0, GPIO_MISCCFG, ~MISCCFG_ENABLE_GPIO_PM_CONFIG)
|
||||
PCRA (Local0, GPIO_MISCCFG, ~MISCCFG_GPIO_PM_CONFIG_BITS)
|
||||
/* Mask in requested bits */
|
||||
PCRO (Local0, GPIO_MISCCFG, Arg1 & MISCCFG_ENABLE_GPIO_PM_CONFIG)
|
||||
PCRO (Local0, GPIO_MISCCFG, Arg1 & MISCCFG_GPIO_PM_CONFIG_BITS)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -30,7 +30,7 @@ Method (_PTS, 1)
|
|||
}
|
||||
/*
|
||||
* Save the current PM bits then
|
||||
* enable GPIO PM with MISCCFG_ENABLE_GPIO_PM_CONFIG
|
||||
* enable GPIO PM with MISCCFG_GPIO_PM_CONFIG_BITS
|
||||
*/
|
||||
If (CondRefOf (\_SB.PCI0.EGPM))
|
||||
{
|
||||
|
|
|
@ -91,7 +91,7 @@ Device(PEPD)
|
|||
|
||||
/*
|
||||
* Save the current PM bits then
|
||||
* enable GPIO PM with MISCCFG_ENABLE_GPIO_PM_CONFIG
|
||||
* enable GPIO PM with MISCCFG_GPIO_PM_CONFIG_BITS
|
||||
*/
|
||||
If (CondRefOf (\_SB.PCI0.EGPM))
|
||||
{
|
||||
|
|
|
@ -656,7 +656,7 @@ void gpio_pm_configure(const uint8_t *misccfg_pm_values, size_t num)
|
|||
{
|
||||
int i;
|
||||
size_t gpio_communities;
|
||||
const uint8_t misccfg_pm_mask = (uint8_t)~MISCCFG_ENABLE_GPIO_PM_CONFIG;
|
||||
const uint8_t misccfg_pm_mask = (uint8_t)~MISCCFG_GPIO_PM_CONFIG_BITS;
|
||||
const struct pad_community *comm;
|
||||
|
||||
comm = soc_gpio_get_community(&gpio_communities);
|
||||
|
|
|
@ -6,6 +6,10 @@
|
|||
#include <soc/gpio.h>
|
||||
#include "gpio_defs.h"
|
||||
|
||||
/* GPIO community IOSF sideband VNNREQ/ACK handshake */
|
||||
#define MISCCFG_GPVNNREQEN (1 << 7)
|
||||
/* GPIO community PGCB clock gating */
|
||||
#define MISCCFG_GPPGCBDPCGEN (1 << 6)
|
||||
/* GPIO community IOSF sideband clock gating */
|
||||
#define MISCCFG_GPSIDEDPCGEN (1 << 5)
|
||||
/* GPIO community RCOMP clock gating */
|
||||
|
@ -18,10 +22,6 @@
|
|||
#define MISCCFG_GPDPCGEN (1 << 1)
|
||||
/* GPIO community local clock gating */
|
||||
#define MISCCFG_GPDLCGEN (1 << 0)
|
||||
/* Enable GPIO community power management configuration */
|
||||
#define MISCCFG_ENABLE_GPIO_PM_CONFIG (MISCCFG_GPSIDEDPCGEN | \
|
||||
MISCCFG_GPRCOMPCDLCGEN | MISCCFG_GPRTCDLCGEN | MISCCFG_GSXSLCGEN \
|
||||
| MISCCFG_GPDPCGEN | MISCCFG_GPDLCGEN)
|
||||
|
||||
#ifndef __ACPI__
|
||||
#include <types.h>
|
||||
|
|
|
@ -33,4 +33,10 @@
|
|||
#include <intelblocks/gpio.h>/* intelblocks/gpio.h depends on definitions in
|
||||
lines above and soc/gpio_defs.h */
|
||||
|
||||
/*
|
||||
* DNV doesn't support dynamic GPIO PM hence GPIO community
|
||||
* MISCCFG register doesn't have PM bits
|
||||
*/
|
||||
#define MISCCFG_GPIO_PM_CONFIG_BITS 0
|
||||
|
||||
#endif /* _SOC_DENVERTON_NS_GPIO_H_ */
|
||||
|
|
|
@ -108,7 +108,7 @@ static void soc_fill_gpio_pm_configuration(void)
|
|||
memcpy(value, config->gpio_pm, sizeof(uint8_t) *
|
||||
TOTAL_GPIO_COMM);
|
||||
else
|
||||
memset(value, MISCCFG_ENABLE_GPIO_PM_CONFIG, sizeof(uint8_t) *
|
||||
memset(value, MISCCFG_GPIO_PM_CONFIG_BITS, sizeof(uint8_t) *
|
||||
TOTAL_GPIO_COMM);
|
||||
|
||||
gpio_pm_configure(value, TOTAL_GPIO_COMM);
|
||||
|
|
|
@ -12,4 +12,10 @@
|
|||
#define CROS_GPIO_COMM4_NAME "INT34C8:02"
|
||||
#define CROS_GPIO_COMM5_NAME "INT34C8:03"
|
||||
|
||||
/* Enable GPIO community power management configuration */
|
||||
#define MISCCFG_GPIO_PM_CONFIG_BITS (MISCCFG_GPVNNREQEN | \
|
||||
MISCCFG_GPPGCBDPCGEN | MISCCFG_GPSIDEDPCGEN | \
|
||||
MISCCFG_GPRCOMPCDLCGEN | MISCCFG_GPRTCDLCGEN | MISCCFG_GSXSLCGEN \
|
||||
| MISCCFG_GPDPCGEN | MISCCFG_GPDLCGEN)
|
||||
|
||||
#endif
|
||||
|
|
|
@ -98,7 +98,7 @@ static void soc_fill_gpio_pm_configuration(void)
|
|||
memcpy(value, config->gpio_pm, sizeof(uint8_t) *
|
||||
TOTAL_GPIO_COMM);
|
||||
else
|
||||
memset(value, MISCCFG_ENABLE_GPIO_PM_CONFIG, sizeof(uint8_t) *
|
||||
memset(value, MISCCFG_GPIO_PM_CONFIG_BITS, sizeof(uint8_t) *
|
||||
TOTAL_GPIO_COMM);
|
||||
|
||||
gpio_pm_configure(value, TOTAL_GPIO_COMM);
|
||||
|
|
|
@ -8,4 +8,9 @@
|
|||
|
||||
#define CROS_GPIO_DEVICE_NAME "INT3455:00"
|
||||
|
||||
/* Enable GPIO community power management configuration */
|
||||
#define MISCCFG_GPIO_PM_CONFIG_BITS (MISCCFG_GPSIDEDPCGEN | \
|
||||
MISCCFG_GPRCOMPCDLCGEN | MISCCFG_GPRTCDLCGEN | MISCCFG_GSXSLCGEN \
|
||||
| MISCCFG_GPDPCGEN | MISCCFG_GPDLCGEN)
|
||||
|
||||
#endif
|
||||
|
|
|
@ -114,7 +114,7 @@ static void soc_fill_gpio_pm_configuration(void)
|
|||
memcpy(value, config->gpio_pm, sizeof(uint8_t) *
|
||||
TOTAL_GPIO_COMM);
|
||||
else
|
||||
memset(value, MISCCFG_ENABLE_GPIO_PM_CONFIG, sizeof(uint8_t) *
|
||||
memset(value, MISCCFG_GPIO_PM_CONFIG_BITS, sizeof(uint8_t) *
|
||||
TOTAL_GPIO_COMM);
|
||||
|
||||
gpio_pm_configure(value, TOTAL_GPIO_COMM);
|
||||
|
|
|
@ -12,4 +12,10 @@
|
|||
#define CROS_GPIO_COMM4_NAME "INT34C8:02"
|
||||
#define CROS_GPIO_COMM5_NAME "INT34C8:03"
|
||||
|
||||
/* Enable GPIO community power management configuration */
|
||||
#define MISCCFG_GPIO_PM_CONFIG_BITS (MISCCFG_GPVNNREQEN | \
|
||||
MISCCFG_GPPGCBDPCGEN | MISCCFG_GPSIDEDPCGEN | \
|
||||
MISCCFG_GPRCOMPCDLCGEN | MISCCFG_GPRTCDLCGEN | MISCCFG_GSXSLCGEN \
|
||||
| MISCCFG_GPDPCGEN | MISCCFG_GPDLCGEN)
|
||||
|
||||
#endif
|
||||
|
|
|
@ -8,4 +8,11 @@
|
|||
soc/gpio_defs.h */
|
||||
|
||||
#define CROS_GPIO_DEVICE_NAME "INT344B:00"
|
||||
|
||||
/*
|
||||
* SPT PCH doesn't support dynamic GPIO PM hence GPIO community
|
||||
* MISCCFG register doesn't have PM bits
|
||||
*/
|
||||
#define MISCCFG_GPIO_PM_CONFIG_BITS 0
|
||||
|
||||
#endif
|
||||
|
|
|
@ -119,7 +119,7 @@ static void soc_fill_gpio_pm_configuration(void)
|
|||
memcpy(value, config->gpio_pm, sizeof(uint8_t) *
|
||||
TOTAL_GPIO_COMM);
|
||||
else
|
||||
memset(value, MISCCFG_ENABLE_GPIO_PM_CONFIG, sizeof(uint8_t) *
|
||||
memset(value, MISCCFG_GPIO_PM_CONFIG_BITS, sizeof(uint8_t) *
|
||||
TOTAL_GPIO_COMM);
|
||||
|
||||
gpio_pm_configure(value, TOTAL_GPIO_COMM);
|
||||
|
|
|
@ -8,4 +8,10 @@
|
|||
|
||||
#define CROS_GPIO_DEVICE_NAME "INT34C5:00"
|
||||
|
||||
/* Enable GPIO community power management configuration */
|
||||
#define MISCCFG_GPIO_PM_CONFIG_BITS (MISCCFG_GPVNNREQEN | \
|
||||
MISCCFG_GPPGCBDPCGEN | MISCCFG_GPSIDEDPCGEN | \
|
||||
MISCCFG_GPRCOMPCDLCGEN | MISCCFG_GPRTCDLCGEN | MISCCFG_GSXSLCGEN \
|
||||
| MISCCFG_GPDPCGEN | MISCCFG_GPDLCGEN)
|
||||
|
||||
#endif
|
||||
|
|
|
@ -6,4 +6,10 @@
|
|||
#include <soc/lewisburg_pch_gpio_defs.h>
|
||||
#include <intelblocks/gpio.h>
|
||||
|
||||
/*
|
||||
* XEON SP series doesn't support dynamic GPIO PM hence GPIO community
|
||||
* MISCCFG register doesn't have PM bits
|
||||
*/
|
||||
#define MISCCFG_GPIO_PM_CONFIG_BITS 0
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue