From ea643a81a10d3d3d308ec3d734958193474f555d Mon Sep 17 00:00:00 2001 From: David Hendricks Date: Sat, 4 Mar 2023 16:19:35 -0800 Subject: [PATCH] soc/intel/xeon_sp: Add PM definition for SPR-SP Change-Id: I13ed156a1b967e87fa30b1867feed03c3d17b992 Signed-off-by: Jonathan Zhang Signed-off-by: David Hendricks Reviewed-on: https://review.coreboot.org/c/coreboot/+/72613 Tested-by: build bot (Jenkins) Reviewed-by: Jonathan Zhang --- src/soc/intel/xeon_sp/ebg/include/soc/soc_pm.h | 13 +++++++++++++ src/soc/intel/xeon_sp/include/soc/pm.h | 8 +------- src/soc/intel/xeon_sp/lbg/include/soc/soc_pm.h | 13 +++++++++++++ 3 files changed, 27 insertions(+), 7 deletions(-) create mode 100644 src/soc/intel/xeon_sp/ebg/include/soc/soc_pm.h create mode 100644 src/soc/intel/xeon_sp/lbg/include/soc/soc_pm.h diff --git a/src/soc/intel/xeon_sp/ebg/include/soc/soc_pm.h b/src/soc/intel/xeon_sp/ebg/include/soc/soc_pm.h new file mode 100644 index 0000000000..d81bbf9a1a --- /dev/null +++ b/src/soc/intel/xeon_sp/ebg/include/soc/soc_pm.h @@ -0,0 +1,13 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +#ifndef _SOC_EBG_PM_H_ +#define _SOC_EBG_PM_H_ + +#define GPE0_STS(x) (0x60 + ((x) * 4)) +#define GPE0_EN(x) (0x70 + ((x) * 4)) + +/* This is defined as ETR3 in EDS. We named it as ETR here for consistency */ +#define ETR 0x1048 +#define PRSTS 0x1810 + +#endif /* _SOC_EBG_PM_H_ */ diff --git a/src/soc/intel/xeon_sp/include/soc/pm.h b/src/soc/intel/xeon_sp/include/soc/pm.h index 41160fac5b..bba0f2ffe6 100644 --- a/src/soc/intel/xeon_sp/include/soc/pm.h +++ b/src/soc/intel/xeon_sp/include/soc/pm.h @@ -7,6 +7,7 @@ #include #include #include +#include /* ACPI_BASE_ADDRESS / PMBASE */ #define PM1_STS 0x00 @@ -66,8 +67,6 @@ #define PM2_CNT 0x50 #define GPE0_REG_MAX 4 #define GPE0_REG_SIZE 32 -#define GPE0_STS(x) (0x80 + ((x) * 4)) -#define GPE0_EN(x) (0x90 + ((x) * 4)) #define GPE_STD 3 /* 0x8c/0x9c = Standard GPE */ #define GPE_STS_RSVD GPE_STD #define GPIO_T2_STS (1 << 15) @@ -76,7 +75,6 @@ #define PCI_EXP_STS (1 << 9) #define SMB_WAK_STS (1 << 7) #define TCOSCI_STS (1 << 6) -#define GPE0_EN(x) (0x90 + ((x) * 4)) #define GPIO_T2_EN (1 << 15) #define ESPI_EN (1 << 14) #define PME_B0_EN (1 << 13) @@ -93,13 +91,9 @@ #define PSS_LATENCY_TRANSITION 10 #define PSS_LATENCY_BUSMASTER 10 -/* This is defined as ETR3 in EDS. We named it as ETR here for consistency */ -#define ETR 0xac #define CF9_LOCK (1 << 31) #define CF9_GLB_RST (1 << 20) -#define PRSTS 0x10 - struct chipset_power_state { uint16_t pm1_sts; uint16_t pm1_en; diff --git a/src/soc/intel/xeon_sp/lbg/include/soc/soc_pm.h b/src/soc/intel/xeon_sp/lbg/include/soc/soc_pm.h new file mode 100644 index 0000000000..2e309b5928 --- /dev/null +++ b/src/soc/intel/xeon_sp/lbg/include/soc/soc_pm.h @@ -0,0 +1,13 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +#ifndef _SOC_LBG_PM_H_ +#define _SOC_LBG_PM_H_ + +#define GPE0_STS(x) (0x80 + ((x) * 4)) +#define GPE0_EN(x) (0x90 + ((x) * 4)) + +/* This is defined as ETR3 in EDS. We named it as ETR here for consistency */ +#define ETR 0xac +#define PRSTS 0x10 + +#endif /* _SOC_LBG_PM_H_ */