SourceLevelDebugPkg/DebugTimer: Dump Debug Timer parameter
Add one parameter DumpFlag to indicate if need to dump Local APIC time's parameter. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jeff Fan <jeff.fan@intel.com> Reviewed-by: Ruiyu Ni <ruiyu.ni@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17501 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@ -18,12 +18,14 @@
|
||||
Initialize CPU local APIC timer.
|
||||
|
||||
@param[out] TimerFrequency Local APIC timer frequency returned.
|
||||
@param[in] DumpFlag If TRUE, dump Local APIC timer's parameter.
|
||||
|
||||
@return 32-bit Local APIC timer init count.
|
||||
**/
|
||||
UINT32
|
||||
InitializeDebugTimer (
|
||||
OUT UINT32 *TimerFrequency
|
||||
OUT UINT32 *TimerFrequency,
|
||||
IN BOOLEAN DumpFlag
|
||||
)
|
||||
{
|
||||
UINTN ApicTimerDivisor;
|
||||
@ -45,11 +47,12 @@ InitializeDebugTimer (
|
||||
|
||||
InitializeApicTimer (ApicTimerDivisor, InitialCount, TRUE, DEBUG_TIMER_VECTOR);
|
||||
|
||||
DEBUG ((EFI_D_INFO, "Debug Timer: FSB Clock = %d\n", PcdGet32(PcdFSBClock)));
|
||||
DEBUG ((EFI_D_INFO, "Debug Timer: Divisor = %d\n", ApicTimerDivisor));
|
||||
DEBUG ((EFI_D_INFO, "Debug Timer: Frequency = %d\n", ApicTimerFrequency));
|
||||
DEBUG ((EFI_D_INFO, "Debug Timer: InitialCount = %d\n", InitialCount));
|
||||
|
||||
if (DumpFlag) {
|
||||
DEBUG ((EFI_D_INFO, "Debug Timer: FSB Clock = %d\n", PcdGet32(PcdFSBClock)));
|
||||
DEBUG ((EFI_D_INFO, "Debug Timer: Divisor = %d\n", ApicTimerDivisor));
|
||||
DEBUG ((EFI_D_INFO, "Debug Timer: Frequency = %d\n", ApicTimerFrequency));
|
||||
DEBUG ((EFI_D_INFO, "Debug Timer: InitialCount = %d\n", InitialCount));
|
||||
}
|
||||
if (TimerFrequency != NULL) {
|
||||
*TimerFrequency = ApicTimerFrequency;
|
||||
}
|
||||
|
Reference in New Issue
Block a user