From 6179cce7147745c19fadbf54140089aca563691d Mon Sep 17 00:00:00 2001 From: Patrick Rudolph Date: Thu, 24 Oct 2024 14:54:24 +0200 Subject: [PATCH] soc/intel/xeon_sp/cpx: Fix PCU device IDs CPX uses the same PCU IDs as SKX. Change-Id: I1bc96232e120b9cd9cb4f5b7b5df7d7db62fcbc4 Signed-off-by: Patrick Rudolph Reviewed-on: https://review.coreboot.org/c/coreboot/+/84852 Reviewed-by: Shuo Liu Tested-by: build bot (Jenkins) --- src/soc/intel/xeon_sp/cpx/include/soc/pci_devs.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/soc/intel/xeon_sp/cpx/include/soc/pci_devs.h b/src/soc/intel/xeon_sp/cpx/include/soc/pci_devs.h index ffefd3e792..0fc473eb71 100644 --- a/src/soc/intel/xeon_sp/cpx/include/soc/pci_devs.h +++ b/src/soc/intel/xeon_sp/cpx/include/soc/pci_devs.h @@ -25,7 +25,7 @@ #define PCU_DEV 30 #define PCU_CR0_FUN 0 -#define PCU_CR0_DEVID 0x344a +#define PCU_CR0_DEVID 0x2080 #define PCU_DEV_CR0(bus) _PCU_DEV(bus, PCU_CR0_FUN) #define PCU_CR0_PLATFORM_INFO 0xa8 #define PCU_CR0_TURBO_ACTIVATION_RATIO 0xb0 @@ -39,7 +39,7 @@ #define PMAX_LOCK BIT(31) #define PCU_CR1_FUN 1 -#define PCU_CR1_DEVID 0x344b +#define PCU_CR1_DEVID 0x2081 #define PCU_DEV_CR1(bus) _PCU_DEV(bus, PCU_CR1_FUN) #define PCU_CR1_BIOS_MB_DATA_REG 0x8c @@ -67,7 +67,7 @@ #define SAPMCTL_LOCK_MASK BIT(31) #define PCU_CR2_FUN 2 -#define PCU_CR2_DEVID 0x344c +#define PCU_CR2_DEVID 0x2082 #define PCU_DEV_CR2(bus) _PCU_DEV(bus, PCU_CR2_FUN) #define PCU_CR2_DRAM_POWER_INFO_LWR 0xa8 #define PCU_CR2_DRAM_POWER_INFO_UPR (PCU_CR2_DRAM_POWER_INFO_LWR + 4) @@ -76,7 +76,7 @@ #define PP_PWR_LIM_LOCK BIT(31) #define PCU_CR3_FUN 3 -#define PCU_CR3_DEVID 0x344d +#define PCU_CR3_DEVID 0x2083 #define PCU_DEV_CR3(bus) _PCU_DEV(bus, PCU_CR3_FUN) #define PCU_CR3_CONFIG_TDP_CONTROL 0x60 #define TDP_LOCK BIT(31)