mirror of
https://github.com/acidanthera/audk.git
synced 2025-04-08 17:05:09 +02:00
UefiCpuPkg/RegisterCpuFeaturesLib: Enhance debug message.
Enhance debug message format to let them easy to read. BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1411 Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Eric Dong <eric.dong@intel.com> Reviewed-by: Ray Ni <ray.ni@intel.com>
This commit is contained in:
parent
8daa4278e8
commit
a6416d91c3
@ -473,8 +473,9 @@ DumpRegisterTableOnProcessor (
|
||||
case Msr:
|
||||
DEBUG ((
|
||||
DebugPrintErrorLevel,
|
||||
"Processor: %d: MSR: %x, Bit Start: %d, Bit Length: %d, Value: %lx\r\n",
|
||||
"Processor: %04d: Index %04d, MSR : %08x, Bit Start: %02d, Bit Length: %02d, Value: %016lx\r\n",
|
||||
ProcessorNumber,
|
||||
FeatureIndex,
|
||||
RegisterTableEntry->Index,
|
||||
RegisterTableEntry->ValidBitStart,
|
||||
RegisterTableEntry->ValidBitLength,
|
||||
@ -484,8 +485,9 @@ DumpRegisterTableOnProcessor (
|
||||
case ControlRegister:
|
||||
DEBUG ((
|
||||
DebugPrintErrorLevel,
|
||||
"Processor: %d: CR: %x, Bit Start: %d, Bit Length: %d, Value: %lx\r\n",
|
||||
"Processor: %04d: Index %04d, CR : %08x, Bit Start: %02d, Bit Length: %02d, Value: %016lx\r\n",
|
||||
ProcessorNumber,
|
||||
FeatureIndex,
|
||||
RegisterTableEntry->Index,
|
||||
RegisterTableEntry->ValidBitStart,
|
||||
RegisterTableEntry->ValidBitLength,
|
||||
@ -495,8 +497,9 @@ DumpRegisterTableOnProcessor (
|
||||
case MemoryMapped:
|
||||
DEBUG ((
|
||||
DebugPrintErrorLevel,
|
||||
"Processor: %d: MMIO: %lx, Bit Start: %d, Bit Length: %d, Value: %lx\r\n",
|
||||
"Processor: %04d: Index %04d, MMIO : %08lx, Bit Start: %02d, Bit Length: %02d, Value: %016lx\r\n",
|
||||
ProcessorNumber,
|
||||
FeatureIndex,
|
||||
RegisterTableEntry->Index | LShiftU64 (RegisterTableEntry->HighIndex, 32),
|
||||
RegisterTableEntry->ValidBitStart,
|
||||
RegisterTableEntry->ValidBitLength,
|
||||
@ -506,8 +509,9 @@ DumpRegisterTableOnProcessor (
|
||||
case CacheControl:
|
||||
DEBUG ((
|
||||
DebugPrintErrorLevel,
|
||||
"Processor: %d: CACHE: %x, Bit Start: %d, Bit Length: %d, Value: %lx\r\n",
|
||||
"Processor: %04d: Index %04d, CACHE: %08lx, Bit Start: %02d, Bit Length: %02d, Value: %016lx\r\n",
|
||||
ProcessorNumber,
|
||||
FeatureIndex,
|
||||
RegisterTableEntry->Index,
|
||||
RegisterTableEntry->ValidBitStart,
|
||||
RegisterTableEntry->ValidBitLength,
|
||||
@ -517,8 +521,9 @@ DumpRegisterTableOnProcessor (
|
||||
case Semaphore:
|
||||
DEBUG ((
|
||||
DebugPrintErrorLevel,
|
||||
"Processor: %d: Semaphore: Scope Value: %s\r\n",
|
||||
"Processor: %04d: Index %04d, SEMAP: %s\r\n",
|
||||
ProcessorNumber,
|
||||
FeatureIndex,
|
||||
mDependTypeStr[MIN ((UINT32)RegisterTableEntry->Value, InvalidDepType)]
|
||||
));
|
||||
break;
|
||||
@ -833,7 +838,7 @@ ProgramProcessorRegister (
|
||||
ApLocation->Thread;
|
||||
DEBUG ((
|
||||
DEBUG_INFO,
|
||||
"Processor = %lu, Entry Index %lu, Type = %s!\n",
|
||||
"Processor = %08lu, Index %08lu, Type = %s!\n",
|
||||
(UINT64)ThreadIndex,
|
||||
(UINT64)Index,
|
||||
mRegisterTypeStr[MIN ((REGISTER_TYPE)RegisterTableEntry->RegisterType, InvalidReg)]
|
||||
|
Loading…
x
Reference in New Issue
Block a user