LocalApicTimerDxe uses APIC Timer as the timer interrupt source. Other code should not program the APIC Timer as it may cause the timer interrupt be signaled at the incorrect timer period or the timer interrupt might be disabled.
The patch prints warning debug messages in driver entrypoint when the Initial Count is not the power-on default value 0. Signed-off-by: Ray Ni <ray...@intel.com> Cc: Michael D Kinney <michael.d.kin...@intel.com> Cc: Nate DeSimone <nathaniel.l.desim...@intel.com> Cc: Laszlo Ersek <ler...@redhat.com> Cc: Rahul Kumar <rahul1.ku...@intel.com> --- UefiCpuPkg/LocalApicTimerDxe/LocalApicTimerDxe.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/UefiCpuPkg/LocalApicTimerDxe/LocalApicTimerDxe.c b/UefiCpuPkg/LocalApicTimerDxe/LocalApicTimerDxe.c index babf2476e3..14ab8fd03d 100644 --- a/UefiCpuPkg/LocalApicTimerDxe/LocalApicTimerDxe.c +++ b/UefiCpuPkg/LocalApicTimerDxe/LocalApicTimerDxe.c @@ -400,6 +400,15 @@ TimerDriverInitialize ( // mTimerNotifyFunction = NULL; + if (GetApicTimerInitCount () != 0) { + DEBUG (( + DEBUG_WARN, + "Warning: APIC timer might be used by other drivers.\n" + " The timer period may be changed unexpectedly.\n" + " Please make sure no other code programs the APIC timer.\n" + )); + } + // // Make sure the Timer Architectural Protocol is not already installed in the system // -- 2.39.1.windows.1 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#113804): https://edk2.groups.io/g/devel/message/113804 Mute This Topic: https://groups.io/mt/103734965/21656 Group Owner: devel+ow...@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/leave/9847357/21656/1706620634/xyzzy [arch...@mail-archive.com] -=-=-=-=-=-=-=-=-=-=-=-