diff options
author | Jeff Fan <jeff.fan@intel.com> | 2015-07-15 03:41:33 +0000 |
---|---|---|
committer | vanjeff <vanjeff@Edk2> | 2015-07-15 03:41:33 +0000 |
commit | a21fe4285ec30d80d1e2925aead5521cf9239a41 (patch) | |
tree | 1db72fa5a060224cbdaa37834afd10ba539e5f4c /UefiCpuPkg/CpuMpPei/CpuMpPei.c | |
parent | 8805c9123156793ee8c48083428bf1c432d0bdcf (diff) | |
download | edk2-platforms-a21fe4285ec30d80d1e2925aead5521cf9239a41.tar.xz |
UefiCpuPkg/CpuMpPei: Update and publish CPU BIST information
Get CPU BIST information from SEC Platform Information(2) PPIs and update them
accordingly. Install(Reinstall) SEC Platform Information2 PPI to published the
new CPU BIST.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jeff Fan <jeff.fan@intel.com>
Reviewed-by: Feng Tian <feng.tian@intel.com>
Reviewed-by: Jiewen Yao <jiewen.yao@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18004 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'UefiCpuPkg/CpuMpPei/CpuMpPei.c')
-rw-r--r-- | UefiCpuPkg/CpuMpPei/CpuMpPei.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/UefiCpuPkg/CpuMpPei/CpuMpPei.c b/UefiCpuPkg/CpuMpPei/CpuMpPei.c index ae98c38639..d218313b0d 100644 --- a/UefiCpuPkg/CpuMpPei/CpuMpPei.c +++ b/UefiCpuPkg/CpuMpPei/CpuMpPei.c @@ -446,6 +446,10 @@ CpuMpPeimInit ( (VOID *)&PeiCpuMpData, sizeof(UINT64) ); + // + // Update and publish CPU BIST information + // + CollectBistDataFromPpi (PeiServices, PeiCpuMpData); return EFI_SUCCESS; } |