public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [Patch 1/1] UefiCpuPkg: Always load microcode patch on AP processor.
@ 2020-01-03  6:59 Siyuan, Fu
  2020-01-07  8:05 ` [edk2-devel] " Dong, Eric
  0 siblings, 1 reply; 2+ messages in thread
From: Siyuan, Fu @ 2020-01-03  6:59 UTC (permalink / raw)
  To: devel; +Cc: Eric Dong, Ray Ni

This patch updates the microcode loader to always perform a microcode detect
and load on both BSP and AP processor. This is to fix a potential microcode
revision mismatch issue in below situation:
1. Assume there are two microcode co-exists in flash: one production version
   and one debug version microcode.
2. FIT loads production microcode to BSP and all AP.
3. UefiCpuPkg loader loads debug microcode to BSP, and skip the loading on AP.
As a result, different microcode patches are loaded to BSP and AP, and trigger
microcode mismatch error during OS boot.

Bugzilla: https://bugzilla.tianocore.org/show_bug.cgi?id=2431

Cc: Eric Dong <eric.dong@intel.com>
Cc: Ray Ni <ray.ni@intel.com>
Signed-off-by: Siyuan Fu <siyuan.fu@intel.com>
---
 UefiCpuPkg/Library/MpInitLib/Microcode.c | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/UefiCpuPkg/Library/MpInitLib/Microcode.c b/UefiCpuPkg/Library/MpInitLib/Microcode.c
index 3da5bfb9cf2f..fa6f9681e55a 100644
--- a/UefiCpuPkg/Library/MpInitLib/Microcode.c
+++ b/UefiCpuPkg/Library/MpInitLib/Microcode.c
@@ -1,7 +1,7 @@
 /** @file
   Implementation of loading microcode on processors.
 
-  Copyright (c) 2015 - 2019, Intel Corporation. All rights reserved.<BR>
+  Copyright (c) 2015 - 2020, Intel Corporation. All rights reserved.<BR>
   SPDX-License-Identifier: BSD-2-Clause-Patent
 
 **/
@@ -105,12 +105,6 @@ MicrocodeDetect (
 
   CurrentRevision = GetCurrentMicrocodeSignature ();
   IsBspCallIn     = (ProcessorNumber == (UINTN)CpuMpData->BspNumber) ? TRUE : FALSE;
-  if (CurrentRevision != 0 && !IsBspCallIn) {
-    //
-    // Skip loading microcode if it has been loaded successfully
-    //
-    return;
-  }
 
   GetProcessorLocationByApicId (GetInitialApicId (), NULL, NULL, &ThreadId);
   if (ThreadId != 0) {
-- 
2.19.1.windows.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [edk2-devel] [Patch 1/1] UefiCpuPkg: Always load microcode patch on AP processor.
  2020-01-03  6:59 [Patch 1/1] UefiCpuPkg: Always load microcode patch on AP processor Siyuan, Fu
@ 2020-01-07  8:05 ` Dong, Eric
  0 siblings, 0 replies; 2+ messages in thread
From: Dong, Eric @ 2020-01-07  8:05 UTC (permalink / raw)
  To: devel@edk2.groups.io, Fu, Siyuan; +Cc: Ni, Ray

Hi Siyuan,

Thanks for your patch.

Reviewed-by: Eric Dong <eric.dong@intel.com>

Thanks,
Eric

> -----Original Message-----
> From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of
> Siyuan, Fu
> Sent: Friday, January 3, 2020 2:59 PM
> To: devel@edk2.groups.io
> Cc: Dong, Eric <eric.dong@intel.com>; Ni, Ray <ray.ni@intel.com>
> Subject: [edk2-devel] [Patch 1/1] UefiCpuPkg: Always load microcode patch
> on AP processor.
> 
> This patch updates the microcode loader to always perform a microcode
> detect and load on both BSP and AP processor. This is to fix a potential
> microcode revision mismatch issue in below situation:
> 1. Assume there are two microcode co-exists in flash: one production version
>    and one debug version microcode.
> 2. FIT loads production microcode to BSP and all AP.
> 3. UefiCpuPkg loader loads debug microcode to BSP, and skip the loading on
> AP.
> As a result, different microcode patches are loaded to BSP and AP, and
> trigger microcode mismatch error during OS boot.
> 
> Bugzilla: https://bugzilla.tianocore.org/show_bug.cgi?id=2431
> 
> Cc: Eric Dong <eric.dong@intel.com>
> Cc: Ray Ni <ray.ni@intel.com>
> Signed-off-by: Siyuan Fu <siyuan.fu@intel.com>
> ---
>  UefiCpuPkg/Library/MpInitLib/Microcode.c | 8 +-------
>  1 file changed, 1 insertion(+), 7 deletions(-)
> 
> diff --git a/UefiCpuPkg/Library/MpInitLib/Microcode.c
> b/UefiCpuPkg/Library/MpInitLib/Microcode.c
> index 3da5bfb9cf2f..fa6f9681e55a 100644
> --- a/UefiCpuPkg/Library/MpInitLib/Microcode.c
> +++ b/UefiCpuPkg/Library/MpInitLib/Microcode.c
> @@ -1,7 +1,7 @@
>  /** @file
>    Implementation of loading microcode on processors.
> 
> -  Copyright (c) 2015 - 2019, Intel Corporation. All rights reserved.<BR>
> +  Copyright (c) 2015 - 2020, Intel Corporation. All rights
> + reserved.<BR>
>    SPDX-License-Identifier: BSD-2-Clause-Patent
> 
>  **/
> @@ -105,12 +105,6 @@ MicrocodeDetect (
> 
>    CurrentRevision = GetCurrentMicrocodeSignature ();
>    IsBspCallIn     = (ProcessorNumber == (UINTN)CpuMpData->BspNumber) ?
> TRUE : FALSE;
> -  if (CurrentRevision != 0 && !IsBspCallIn) {
> -    //
> -    // Skip loading microcode if it has been loaded successfully
> -    //
> -    return;
> -  }
> 
>    GetProcessorLocationByApicId (GetInitialApicId (), NULL, NULL, &ThreadId);
>    if (ThreadId != 0) {
> --
> 2.19.1.windows.1
> 
> 
> 


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-01-07  8:05 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-01-03  6:59 [Patch 1/1] UefiCpuPkg: Always load microcode patch on AP processor Siyuan, Fu
2020-01-07  8:05 ` [edk2-devel] " Dong, Eric

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox