summaryrefslogtreecommitdiffstats
path: root/Vlv2TbltDevicePkg
diff options
context:
space:
mode:
authorShifei Lu <shifeix.a.lu@intel.com>2015-03-10 03:16:48 +0000
committerzwei4 <zwei4@Edk2>2015-03-10 03:16:48 +0000
commit8268a01d2ca41cddbcccac9a4559d37e782eedc2 (patch)
tree2515022c5fb1d7f0f0e2610e49abdd083f861124 /Vlv2TbltDevicePkg
parentc01934fb183a66547a6473686286cdd44de81b79 (diff)
downloadedk2-8268a01d2ca41cddbcccac9a4559d37e782eedc2.tar.gz
edk2-8268a01d2ca41cddbcccac9a4559d37e782eedc2.tar.bz2
edk2-8268a01d2ca41cddbcccac9a4559d37e782eedc2.zip
Add code to identify D0 stepping ValleyView SoC.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Shifei Lu <shifeix.a.lu@intel.com> Reviewed-by: David Wei <david.wei@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17034 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Vlv2TbltDevicePkg')
-rw-r--r--Vlv2TbltDevicePkg/Library/PchPlatformLib/PchPlatformLibrary.c7
1 files changed, 6 insertions, 1 deletions
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;