summaryrefslogtreecommitdiffstats
path: root/SourceLevelDebugPkg
diff options
context:
space:
mode:
authorJeff Fan <jeff.fan@intel.com>2015-05-18 01:18:42 +0000
committervanjeff <vanjeff@Edk2>2015-05-18 01:18:42 +0000
commitadcc2727dfef1fce28cae61960ecf7b4eea889c6 (patch)
treef4a1248a4515f44973481e4533dcab3a815f3096 /SourceLevelDebugPkg
parentf1f0f0deb6e64df6b7c04ead7330afecf5537e46 (diff)
downloadedk2-adcc2727dfef1fce28cae61960ecf7b4eea889c6.tar.gz
edk2-adcc2727dfef1fce28cae61960ecf7b4eea889c6.tar.bz2
edk2-adcc2727dfef1fce28cae61960ecf7b4eea889c6.zip
SourceLevelDebugPkg/DxeDebugAgent: Initialize Local APIC Timer early
Now Debug Agent library uses Local APIC Timer to implement time-out mechanism. But it does not initialize Local APIC Timer before transfer data with HOST. This fix is to move Local APIC Timer initialization to SetupDebugAgentEnvironment(). This fix also updates function header and fixed one typo of SetupDebugAgentEnvironment() name. 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@17457 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'SourceLevelDebugPkg')
-rw-r--r--SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgent/DxeDebugAgentLib.c39
1 files changed, 19 insertions, 20 deletions
diff --git a/SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgent/DxeDebugAgentLib.c b/SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgent/DxeDebugAgentLib.c
index 601c5e8bed..f1cb7d5601 100644
--- a/SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgent/DxeDebugAgentLib.c
+++ b/SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgent/DxeDebugAgentLib.c
@@ -235,19 +235,24 @@ GetDebugPortHandle (
}
/**
- Worker function to setup IDT table and initialize the IDT entries.
+ Worker function to set up Debug Agent environment.
+
+ This function will set up IDT table and initialize the IDT entries and
+ initialize CPU LOCAL APIC timer.
+ It also tries to connect HOST if Debug Agent was not initialized before.
@param[in] Mailbox Pointer to Mailbox.
**/
VOID
-SetupDebugAgentEnviroment (
+SetupDebugAgentEnvironment (
IN DEBUG_AGENT_MAILBOX *Mailbox
)
{
IA32_DESCRIPTOR Idtr;
UINT16 IdtEntryCount;
UINT64 DebugPortHandle;
+ UINT32 DebugTimerFrequency;
if (mMultiProcessorDebugSupport) {
InitializeSpinLock (&mDebugMpContext.MpContextSpinLock);
@@ -299,6 +304,11 @@ SetupDebugAgentEnviroment (
}
//
+ // Initialize Debug Timer hardware and save its initial count and frequency
+ //
+ mDebugMpContext.DebugTimerInitCount = InitializeDebugTimer (&DebugTimerFrequency);
+ UpdateMailboxContent (mMailboxPointer, DEBUG_MAILBOX_DEBUG_TIMER_FREQUENCY, DebugTimerFrequency);
+ //
// Initialize debug communication port
//
DebugPortHandle = (UINT64) (UINTN)DebugPortInitialize ((VOID *)(UINTN)mMailboxPointer->DebugPortHandle, NULL);
@@ -326,7 +336,7 @@ SetupDebugAgentEnviroment (
/**
Initialize debug agent.
- This function is used to set up debug enviroment for DXE phase.
+ This function is used to set up debug environment for DXE phase.
If this function is called by DXE Core, Context must be the pointer
to HOB list which will be used to get GUIDed HOB. It will enable
@@ -355,7 +365,6 @@ InitializeDebugAgent (
IA32_DESCRIPTOR IdtDescriptor;
IA32_DESCRIPTOR *Ia32Idtr;
IA32_IDT_ENTRY *Ia32IdtEntry;
- UINT32 DebugTimerFrequency;
if (InitFlag == DEBUG_AGENT_INIT_DXE_AP) {
//
@@ -410,14 +419,9 @@ InitializeDebugAgent (
Mailbox = GetMailboxFromHob (HobList);
}
//
- // Set up IDT table and prepare for IDT entries
+ // Set up Debug Agent Environment and try to connect HOST if required
//
- SetupDebugAgentEnviroment (Mailbox);
- //
- // Initialize Debug Timer hardware and save its initial count and frequency
- //
- mDebugMpContext.DebugTimerInitCount = InitializeDebugTimer (&DebugTimerFrequency);
- UpdateMailboxContent (mMailboxPointer, DEBUG_MAILBOX_DEBUG_TIMER_FREQUENCY, DebugTimerFrequency);
+ SetupDebugAgentEnvironment (Mailbox);
//
// For DEBUG_AGENT_INIT_S3, needn't to install configuration table and EFI Serial IO protocol
// For DEBUG_AGENT_INIT_DXE_CORE, InternalConstructorWorker() will invoked in Constructor()
@@ -503,14 +507,9 @@ InitializeDebugAgent (
HobList = Context;
Mailbox = GetMailboxFromHob (HobList);
//
- // Set up IDT table and prepare for IDT entries
- //
- SetupDebugAgentEnviroment (Mailbox);
- //
- // Initialize Debug Timer hardware and save its initial count and frequency
+ // Set up Debug Agent Environment and try to connect HOST if required
//
- mDebugMpContext.DebugTimerInitCount = InitializeDebugTimer (&DebugTimerFrequency);
- UpdateMailboxContent (mMailboxPointer, DEBUG_MAILBOX_DEBUG_TIMER_FREQUENCY, DebugTimerFrequency);
+ SetupDebugAgentEnvironment (Mailbox);
//
// Enable interrupt to receive Debug Timer interrupt
//
@@ -533,9 +532,9 @@ InitializeDebugAgent (
//
mMailboxPointer = Mailbox;
//
- // Set up IDT table and prepare for IDT entries
+ // Set up Debug Agent Environment and try to connect HOST if required
//
- SetupDebugAgentEnviroment (Mailbox);
+ SetupDebugAgentEnvironment (Mailbox);
//
// Disable interrupt
//