You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
2.0 KiB
50 lines
2.0 KiB
4 months ago
|
From 41089770963055b4bc9662ba4204d8ee7907fbcd Mon Sep 17 00:00:00 2001
|
||
1 year ago
|
From: Gerd Hoffmann <kraxel@redhat.com>
|
||
|
Date: Tue, 28 Feb 2023 15:47:00 +0100
|
||
4 months ago
|
Subject: [PATCH] UefiCpuPkg/MpInitLib: fix apic mode for cpu hotplug
|
||
1 year ago
|
|
||
|
RH-Author: Gerd Hoffmann <kraxel@redhat.com>
|
||
|
RH-MergeRequest: 42: UefiCpuPkg/MpInitLib: fix apic mode for cpu hotplug
|
||
|
RH-Bugzilla: 2124143
|
||
|
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
|
||
|
RH-Commit: [1/1] 5168501c31541a57aaeb3b3bd7c3602205eb7cdf (kraxel/centos-edk2)
|
||
|
|
||
|
In case the number of CPUs can in increase beyond 255
|
||
|
due to CPU hotplug choose x2apic mode.
|
||
|
|
||
|
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
|
||
4 months ago
|
|
||
|
patch_name: edk2-UefiCpuPkg-MpInitLib-fix-apic-mode-for-cpu-hotplug.patch
|
||
|
present_in_specfile: true
|
||
|
location_in_specfile: 38
|
||
1 year ago
|
---
|
||
|
UefiCpuPkg/Library/MpInitLib/MpLib.c | 8 +++++++-
|
||
|
1 file changed, 7 insertions(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/UefiCpuPkg/Library/MpInitLib/MpLib.c b/UefiCpuPkg/Library/MpInitLib/MpLib.c
|
||
4 months ago
|
index 9a6ec5db5c..14ecc62f2b 100644
|
||
1 year ago
|
--- a/UefiCpuPkg/Library/MpInitLib/MpLib.c
|
||
|
+++ b/UefiCpuPkg/Library/MpInitLib/MpLib.c
|
||
4 months ago
|
@@ -527,7 +527,9 @@ CollectProcessorCount (
|
||
1 year ago
|
//
|
||
|
// Enable x2APIC mode if
|
||
|
// 1. Number of CPU is greater than 255; or
|
||
|
- // 2. There are any logical processors reporting an Initial APIC ID of 255 or greater.
|
||
|
+ // 2. The platform exposed the exact *boot* CPU count to us in advance, and
|
||
|
+ // more than 255 logical processors are possible later, with hotplug; or
|
||
|
+ // 3. There are any logical processors reporting an Initial APIC ID of 255 or greater.
|
||
|
//
|
||
|
X2Apic = FALSE;
|
||
|
if (CpuMpData->CpuCount > 255) {
|
||
4 months ago
|
@@ -535,6 +537,10 @@ CollectProcessorCount (
|
||
1 year ago
|
// If there are more than 255 processor found, force to enable X2APIC
|
||
|
//
|
||
|
X2Apic = TRUE;
|
||
|
+ } else if ((PcdGet32 (PcdCpuBootLogicalProcessorNumber) > 0) &&
|
||
|
+ (PcdGet32 (PcdCpuMaxLogicalProcessorNumber) > 255))
|
||
|
+ {
|
||
|
+ X2Apic = TRUE;
|
||
|
} else {
|
||
|
CpuInfoInHob = (CPU_INFO_IN_HOB *)(UINTN)CpuMpData->CpuInfoInHob;
|
||
|
for (Index = 0; Index < CpuMpData->CpuCount; Index++) {
|