summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian J. Johnson <bjohnson@sgi.com>2015-07-03 02:29:01 +0000
committervanjeff <vanjeff@Edk2>2015-07-03 02:29:01 +0000
commit0bb5d7a55b7f3537b9e89f1b135993412fe343c5 (patch)
treefb84562ab4a7783193248ed218092026e9259793
parenta645180666a7d5b79195f89df13dc8d96befecb6 (diff)
downloadedk2-0bb5d7a55b7f3537b9e89f1b135993412fe343c5.zip
edk2-0bb5d7a55b7f3537b9e89f1b135993412fe343c5.tar.gz
edk2-0bb5d7a55b7f3537b9e89f1b135993412fe343c5.tar.bz2
SourceLevelDebugPkg: Fix PEI debug timer regression
Recent changes to debug timer handling ended up leaving the timer disabled in PEI. This made it impossible to stop execution in PEI externally via the debugger. Enable the timer when InitializeDebugAgent calls InitializeDebugAgentPhase2, as well as when it returns directly. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Brian J. Johnson <bjohnson@sgi.com> Reviewed-by: Jeff Fan <jeff.fan@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17819 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r--SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgent/SecPeiDebugAgentLib.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgent/SecPeiDebugAgentLib.c b/SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgent/SecPeiDebugAgentLib.c
index fcc7a4b..ea75742 100644
--- a/SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgent/SecPeiDebugAgentLib.c
+++ b/SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgent/SecPeiDebugAgentLib.c
@@ -684,6 +684,10 @@ InitializeDebugAgentPhase2 (
TriggerSoftInterrupt (MEMORY_READY_SIGNATURE);
}
//
+ // Enable Debug Timer interrupt
+ //
+ SaveAndSetDebugTimerInterrupt (TRUE);
+ //
// Enable CPU interrupts so debug timer interrupts can be delivered
//
EnableInterrupts ();