From 8268a01d2ca41cddbcccac9a4559d37e782eedc2 Mon Sep 17 00:00:00 2001 From: Shifei Lu Date: Tue, 10 Mar 2015 03:16:48 +0000 Subject: [PATCH] Add code to identify D0 stepping ValleyView SoC. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Shifei Lu Reviewed-by: David Wei git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17034 6f19259b-4bc3-4df7-8a09-765794883524 --- .../SouthCluster/Include/PchRegs/PchRegsPcu.h | 2 ++ .../Library/PchPlatformLib/PchPlatformLibrary.c | 7 ++++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Vlv2DeviceRefCodePkg/ValleyView2Soc/SouthCluster/Include/PchRegs/PchRegsPcu.h b/Vlv2DeviceRefCodePkg/ValleyView2Soc/SouthCluster/Include/PchRegs/PchRegsPcu.h index 29629890c0..bf3c3c86c3 100644 --- a/Vlv2DeviceRefCodePkg/ValleyView2Soc/SouthCluster/Include/PchRegs/PchRegsPcu.h +++ b/Vlv2DeviceRefCodePkg/ValleyView2Soc/SouthCluster/Include/PchRegs/PchRegsPcu.h @@ -119,6 +119,8 @@ typedef enum { #define V_PCH_LPC_RID_B 0x0C // B3 Stepping (25 x 27) #define V_PCH_LPC_RID_C 0x0D // C0 Stepping (17 x 17) #define V_PCH_LPC_RID_D 0x0E // C0 Stepping (25 x 27) +#define V_PCH_LPC_RID_E 0x10 // D0 Stepping (17 x 17) +#define V_PCH_LPC_RID_F 0x11 // D0 Stepping (25 x 27) #define R_PCH_LPC_MLT 0x0D // Master Latency Timer #define B_PCH_LPC_MLT_MLC 0xF8 // Master Latency Count diff --git a/Vlv2TbltDevicePkg/Library/PchPlatformLib/PchPlatformLibrary.c b/Vlv2TbltDevicePkg/Library/PchPlatformLib/PchPlatformLibrary.c index c92308f4e9..a509b07c69 100644 --- a/Vlv2TbltDevicePkg/Library/PchPlatformLib/PchPlatformLibrary.c +++ b/Vlv2TbltDevicePkg/Library/PchPlatformLib/PchPlatformLibrary.c @@ -83,7 +83,12 @@ PchStepping ( case V_PCH_LPC_RID_D: return PchC0; break; - + + case V_PCH_LPC_RID_E: + case V_PCH_LPC_RID_F: + return PchD0; + break; + default: return PchSteppingMax; break; -- 2.39.2