summaryrefslogtreecommitdiffstats
path: root/UefiCpuPkg/PiSmmCpuDxeSmm
diff options
context:
space:
mode:
authorEric Dong <eric.dong@intel.com>2019-08-05 14:41:43 +0800
committerEric Dong <eric.dong@intel.com>2019-08-06 11:29:04 +0800
commit02031cfc920e31f748053cbc0c844676927db0bc (patch)
tree3e2343f1f296dfb297bcfa9796c2d0b7b4851ede /UefiCpuPkg/PiSmmCpuDxeSmm
parent1821dbed1da616637f5c04fe1f5029016f81bd52 (diff)
downloadedk2-02031cfc920e31f748053cbc0c844676927db0bc.tar.gz
edk2-02031cfc920e31f748053cbc0c844676927db0bc.tar.bz2
edk2-02031cfc920e31f748053cbc0c844676927db0bc.zip
UefiCpuPkg/PiSmmCpuDxeSmm: Remove debug message.
This debug message may be called by BSP and APs. It may caused ASSERT when APs call this debug code. In order to avoid system boot assert, Remove this debug message. Signed-off-by: Eric Dong <eric.dong@intel.com> Reviewed-by: Ray Ni <ray.ni@intel.com> Cc: Laszlo Ersek <lersek@redhat.com>
Diffstat (limited to 'UefiCpuPkg/PiSmmCpuDxeSmm')
-rw-r--r--UefiCpuPkg/PiSmmCpuDxeSmm/CpuS3.c22
1 files changed, 1 insertions, 21 deletions
diff --git a/UefiCpuPkg/PiSmmCpuDxeSmm/CpuS3.c b/UefiCpuPkg/PiSmmCpuDxeSmm/CpuS3.c
index 2cfc61b2c6..d20bc4aae6 100644
--- a/UefiCpuPkg/PiSmmCpuDxeSmm/CpuS3.c
+++ b/UefiCpuPkg/PiSmmCpuDxeSmm/CpuS3.c
@@ -1,7 +1,7 @@
/** @file
Code for Processor S3 restoration
-Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
+Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
@@ -90,8 +90,6 @@ UINT8 mApHltLoopCodeTemplate[] = {
0xEB, 0xFC // jmp $-2
};
-CHAR16 *mRegisterTypeStr[] = {L"MSR", L"CR", L"MMIO", L"CACHE", L"SEMAP", L"INVALID" };
-
/**
Sync up the MTRR values for all processors.
@@ -189,7 +187,6 @@ ProgramProcessorRegister (
UINT32 PackageThreadsCount;
UINT32 CurrentThread;
UINTN ProcessorIndex;
- UINTN ThreadIndex;
UINTN ValidThreadCount;
UINT32 *ValidCoreCountPerPackage;
@@ -202,23 +199,6 @@ ProgramProcessorRegister (
RegisterTableEntry = &RegisterTableEntryHead[Index];
- DEBUG_CODE_BEGIN ();
- if (ApLocation != NULL) {
- AcquireSpinLock (&CpuFlags->ConsoleLogLock);
- ThreadIndex = ApLocation->Package * CpuStatus->MaxCoreCount * CpuStatus->MaxThreadCount +
- ApLocation->Core * CpuStatus->MaxThreadCount +
- ApLocation->Thread;
- DEBUG ((
- DEBUG_INFO,
- "Processor = %lu, Entry Index %lu, Type = %s!\n",
- (UINT64)ThreadIndex,
- (UINT64)Index,
- mRegisterTypeStr[MIN ((REGISTER_TYPE)RegisterTableEntry->RegisterType, InvalidReg)]
- ));
- ReleaseSpinLock (&CpuFlags->ConsoleLogLock);
- }
- DEBUG_CODE_END ();
-
//
// Check the type of specified register
//