/** Preparation before programming MTRR. This function will do some preparation for programming MTRRs: disable cache, invalid cache and disable MTRR caching functionality @param[out] Pointer to context to save **/ VOID PreMtrrChange ( OUT MTRR_CONTEXT *MtrrContext ) { // // Disable interrupts and save current interrupt state // MtrrContext->InterruptState = SaveAndDisableInterrupts(); // // Enter no fill cache mode, CD=1(Bit30), NW=0 (Bit29) // AsmDisableCache (); // // Save original CR4 value and clear PGE flag (Bit 7) // MtrrContext->Cr4 = AsmReadCr4 (); AsmWriteCr4 (MtrrContext->Cr4 & (~BIT7)); // // Flush all TLBs // CpuFlushTlb (); // // Disable Mtrrs // AsmMsrBitFieldWrite64 (MTRR_LIB_IA32_MTRR_DEF_TYPE, 10, 11, 0); }
/** Initialize IDT to setup exception handlers for SMM. **/ VOID InitializeSmmIdt ( VOID ) { EFI_STATUS Status; BOOLEAN InterruptState; IA32_DESCRIPTOR DxeIdtr; // // Disable Interrupt and save DXE IDT table // InterruptState = SaveAndDisableInterrupts (); AsmReadIdtr (&DxeIdtr); // // Load SMM temporary IDT table // AsmWriteIdtr (&gcSmiIdtr); // // Setup SMM default exception handlers, SMM IDT table // will be updated and saved in gcSmiIdtr // Status = InitializeCpuExceptionHandlers (NULL); ASSERT_EFI_ERROR (Status); // // Restore DXE IDT table and CPU interrupt // AsmWriteIdtr ((IA32_DESCRIPTOR *) &DxeIdtr); SetInterruptState (InterruptState); }
UINT64 InternalGetPerformanceCounterFrequency ( VOID ) { BOOLEAN InterruptState; UINT64 Count; if (mPerformanceCounterFrequency == 0) { InterruptState = SaveAndDisableInterrupts (); Count = GetPerformanceCounter (); MicroSecondDelay (100); mPerformanceCounterFrequency = MultU64x32 (GetPerformanceCounter () - Count, 10000); SetInterruptState (InterruptState); } return mPerformanceCounterFrequency; }
/** Creates a nes entry stub. Then saves the current IDT entry and replaces it with an interrupt gate for the new entry point. The IdtEntryTable is updated with the new registered function. This code executes in boot services context. The stub entry executes in interrupt context. @param ExceptionType Specifies which vector to hook. @param NewCallback A pointer to the new function to be registered. **/ VOID HookEntry ( IN EFI_EXCEPTION_TYPE ExceptionType, IN CALLBACK_FUNC NewCallback ) { BOOLEAN OldIntFlagState; CreateEntryStub (ExceptionType, (VOID **) &IdtEntryTable[ExceptionType].StubEntry); // // Disables CPU interrupts and returns the previous interrupt state // OldIntFlagState = SaveAndDisableInterrupts (); // // gets IDT Gate descriptor by index // ReadIdtGateDescriptor (ExceptionType, &(IdtEntryTable[ExceptionType].OrigDesc)); // // stores orignal interrupt handle // IdtEntryTable[ExceptionType].OrigVector = (DEBUG_PROC) GetInterruptHandleFromIdt (&(IdtEntryTable[ExceptionType].OrigDesc)); // // encodes new IDT Gate descriptor by stub entry // Vect2Desc (&IdtEntryTable[ExceptionType].NewDesc, IdtEntryTable[ExceptionType].StubEntry); // // stores NewCallback // IdtEntryTable[ExceptionType].RegisteredCallback = NewCallback; // // writes back new IDT Gate descriptor // WriteIdtGateDescriptor (ExceptionType, &(IdtEntryTable[ExceptionType].NewDesc)); // // restore interrupt state // SetInterruptState (OldIntFlagState); return ; }
/** Call FSP API - FspInit. @param[in] FspHeader FSP header pointer. @param[in] FspInitParams Address pointer to the FSP_INIT_PARAMS structure. @return EFI status returned by FspInit API. **/ EFI_STATUS EFIAPI CallFspInit ( IN FSP_INFO_HEADER *FspHeader, IN FSP_INIT_PARAMS *FspInitParams ) { FSP_INIT FspInitApi; EFI_STATUS Status; BOOLEAN InterruptState; FspInitApi = (FSP_INIT)(UINTN)(FspHeader->ImageBase + FspHeader->FspInitEntryOffset); InterruptState = SaveAndDisableInterrupts (); Status = Execute32BitCode ((UINTN)FspInitApi, (UINTN)FspInitParams); SetInterruptState (InterruptState); return Status; }
/** Call FSP API - TempRamExit. @param[in] FspHeader FSP header pointer. @param[in,out] TempRamExitParam Address pointer to the TempRamExit parameters structure. @return EFI status returned by TempRamExit API. **/ EFI_STATUS EFIAPI CallTempRamExit ( IN FSP_INFO_HEADER *FspHeader, IN OUT VOID *TempRamExitParam ) { FSP_TEMP_RAM_EXIT TempRamExitApi; EFI_STATUS Status; BOOLEAN InterruptState; TempRamExitApi = (FSP_TEMP_RAM_EXIT)(UINTN)(FspHeader->ImageBase + FspHeader->TempRamExitEntryOffset); InterruptState = SaveAndDisableInterrupts (); Status = Execute32BitCode ((UINTN)TempRamExitApi, (UINTN)TempRamExitParam); SetInterruptState (InterruptState); return Status; }
/** Call FSP API - FspNotifyPhase. @param[in] FspHeader FSP header pointer. @param[in] NotifyPhaseParams Address pointer to the NOTIFY_PHASE_PARAMS structure. @return EFI status returned by FspNotifyPhase API. **/ EFI_STATUS EFIAPI CallFspNotifyPhase ( IN FSP_INFO_HEADER *FspHeader, IN NOTIFY_PHASE_PARAMS *NotifyPhaseParams ) { FSP_NOTIFY_PHASE NotifyPhaseApi; EFI_STATUS Status; BOOLEAN InterruptState; NotifyPhaseApi = (FSP_NOTIFY_PHASE)(UINTN)(FspHeader->ImageBase + FspHeader->NotifyPhaseEntryOffset); InterruptState = SaveAndDisableInterrupts (); Status = Execute32BitCode ((UINTN)NotifyPhaseApi, (UINTN)NotifyPhaseParams); SetInterruptState (InterruptState); return Status; }
/** Initialize IDT to setup exception handlers for SMM. **/ VOID InitializeSmmIdt ( VOID ) { EFI_STATUS Status; BOOLEAN InterruptState; IA32_DESCRIPTOR DxeIdtr; // // There are 32 (not 255) entries in it since only processor // generated exceptions will be handled. // gcSmiIdtr.Limit = (sizeof(IA32_IDT_GATE_DESCRIPTOR) * 32) - 1; // // Allocate page aligned IDT, because it might be set as read only. // gcSmiIdtr.Base = (UINTN)AllocateCodePages (EFI_SIZE_TO_PAGES(gcSmiIdtr.Limit + 1)); ASSERT (gcSmiIdtr.Base != 0); ZeroMem ((VOID *)gcSmiIdtr.Base, gcSmiIdtr.Limit + 1); // // Disable Interrupt and save DXE IDT table // InterruptState = SaveAndDisableInterrupts (); AsmReadIdtr (&DxeIdtr); // // Load SMM temporary IDT table // AsmWriteIdtr (&gcSmiIdtr); // // Setup SMM default exception handlers, SMM IDT table // will be updated and saved in gcSmiIdtr // Status = InitializeCpuExceptionHandlers (NULL); ASSERT_EFI_ERROR (Status); // // Restore DXE IDT table and CPU interrupt // AsmWriteIdtr ((IA32_DESCRIPTOR *) &DxeIdtr); SetInterruptState (InterruptState); }
/** Enable/Disable the interrupt of debug timer and return the interrupt state prior to the operation. If EnableStatus is TRUE, enable the interrupt of debug timer. If EnableStatus is FALSE, disable the interrupt of debug timer. @param[in] EnableStatus Enable/Disable. @retval TRUE Debug timer interrupt were enabled on entry to this call. @retval FALSE Debug timer interrupt were disabled on entry to this call. **/ BOOLEAN EFIAPI SaveAndSetDebugTimerInterrupt ( IN BOOLEAN EnableStatus ) { BOOLEAN OldInterruptState; BOOLEAN OldDebugTimerInterruptState; OldInterruptState = SaveAndDisableInterrupts (); OldDebugTimerInterruptState = GetApicTimerInterruptState (); if (EnableStatus) { EnableApicTimerInterrupt (); } else { DisableApicTimerInterrupt (); } SetInterruptState (OldInterruptState); return OldDebugTimerInterruptState; }
/** Undoes HookEntry. This code executes in boot services context. @param ExceptionType Specifies which entry to unhook **/ VOID UnhookEntry ( IN EFI_EXCEPTION_TYPE ExceptionType ) { BOOLEAN OldIntFlagState; // // Disables CPU interrupts and returns the previous interrupt state // OldIntFlagState = SaveAndDisableInterrupts (); // // restore the default IDT Date Descriptor // WriteIdtGateDescriptor (ExceptionType, &(IdtEntryTable[ExceptionType].OrigDesc)); // // restore interrupt state // SetInterruptState (OldIntFlagState); return ; }
/** Initialize debug agent. This function is used to set up debug environment for SEC and PEI phase. If InitFlag is DEBUG_AGENT_INIT_PREMEM_SEC, it will overirde IDT table entries and initialize debug port. It will enable interrupt to support break-in feature. It will set up debug agent Mailbox in cache-as-ramfrom. It will be called before physical memory is ready. If InitFlag is DEBUG_AGENT_INIT_POSTMEM_SEC, debug agent will build one GUIDed HOB to copy debug agent Mailbox. It will be called after physical memory is ready. This function is used to set up debug environment to support source level debugging. If certain Debug Agent Library instance has to save some private data in the stack, this function must work on the mode that doesn't return to the caller, then the caller needs to wrap up all rest of logic after InitializeDebugAgent() into one function and pass it into InitializeDebugAgent(). InitializeDebugAgent() is responsible to invoke the passing-in function at the end of InitializeDebugAgent(). If the parameter Function is not NULL, Debug Agent Library instance will invoke it by passing in the Context to be its parameter. If Function() is NULL, Debug Agent Library instance will return after setup debug environment. @param[in] InitFlag Init flag is used to decide the initialize process. @param[in] Context Context needed according to InitFlag; it was optional. @param[in] Function Continue function called by debug agent library; it was optional. **/ VOID EFIAPI InitializeDebugAgent ( IN UINT32 InitFlag, IN VOID *Context, OPTIONAL IN DEBUG_AGENT_CONTINUE Function OPTIONAL ) { DEBUG_AGENT_MAILBOX *Mailbox; DEBUG_AGENT_MAILBOX *NewMailbox; DEBUG_AGENT_MAILBOX MailboxInStack; DEBUG_AGENT_PHASE2_CONTEXT Phase2Context; DEBUG_AGENT_CONTEXT_POSTMEM_SEC *DebugAgentContext; EFI_STATUS Status; IA32_DESCRIPTOR *Ia32Idtr; IA32_IDT_ENTRY *Ia32IdtEntry; UINT64 DebugPortHandle; UINT64 MailboxLocation; UINT64 *MailboxLocationPointer; EFI_PHYSICAL_ADDRESS Address; UINT32 DebugTimerFrequency; BOOLEAN CpuInterruptState; // // Disable interrupts and save current interrupt state // CpuInterruptState = SaveAndDisableInterrupts(); switch (InitFlag) { case DEBUG_AGENT_INIT_PREMEM_SEC: InitializeDebugIdt (); MailboxLocation = (UINT64)(UINTN)&MailboxInStack; Mailbox = &MailboxInStack; ZeroMem ((VOID *) Mailbox, sizeof (DEBUG_AGENT_MAILBOX)); // // Get and save debug port handle and set the length of memory block. // SetLocationSavedMailboxPointerInIdtEntry (&MailboxLocation); // // Force error message could be printed during the first shakehand between Target/HOST. // SetDebugFlag (DEBUG_AGENT_FLAG_PRINT_ERROR_LEVEL, DEBUG_AGENT_ERROR); // // Save init arch type when debug agent initialized // SetDebugFlag (DEBUG_AGENT_FLAG_INIT_ARCH, DEBUG_ARCH_SYMBOL); // // Initialize Debug Timer hardware and save its frequency // InitializeDebugTimer (&DebugTimerFrequency, TRUE); UpdateMailboxContent (Mailbox, DEBUG_MAILBOX_DEBUG_TIMER_FREQUENCY, DebugTimerFrequency); Phase2Context.InitFlag = InitFlag; Phase2Context.Context = Context; Phase2Context.Function = Function; DebugPortInitialize ((VOID *) &Phase2Context, InitializeDebugAgentPhase2); // // If reaches here, it means Debug Port initialization failed. // DEBUG ((EFI_D_ERROR, "Debug Agent: Debug port initialization failed.\n")); break; case DEBUG_AGENT_INIT_POSTMEM_SEC: Mailbox = GetMailboxPointer (); // // Memory has been ready // SetDebugFlag (DEBUG_AGENT_FLAG_MEMORY_READY, 1); if (IsHostAttached ()) { // // Trigger one software interrupt to inform HOST // TriggerSoftInterrupt (MEMORY_READY_SIGNATURE); } // // Install Vector Handoff Info PPI to persist vectors used by Debug Agent // Status = PeiServicesInstallPpi (&mVectorHandoffInfoPpiList[0]); if (EFI_ERROR (Status)) { DEBUG ((EFI_D_ERROR, "DebugAgent: Failed to install Vector Handoff Info PPI!\n")); CpuDeadLoop (); } // // Fix up Debug Port handle address and mailbox address // DebugAgentContext = (DEBUG_AGENT_CONTEXT_POSTMEM_SEC *) Context; if (DebugAgentContext != NULL) { DebugPortHandle = (UINT64)(UINT32)(Mailbox->DebugPortHandle + DebugAgentContext->StackMigrateOffset); UpdateMailboxContent (Mailbox, DEBUG_MAILBOX_DEBUG_PORT_HANDLE_INDEX, DebugPortHandle); Mailbox = (DEBUG_AGENT_MAILBOX *) ((UINTN) Mailbox + DebugAgentContext->StackMigrateOffset); MailboxLocation = (UINT64)(UINTN)Mailbox; // // Build mailbox location in HOB and fix-up its address // MailboxLocationPointer = BuildGuidDataHob ( &gEfiDebugAgentGuid, &MailboxLocation, sizeof (UINT64) ); MailboxLocationPointer = (UINT64 *) ((UINTN) MailboxLocationPointer + DebugAgentContext->HeapMigrateOffset); } else { // // DebugAgentContext is NULL. Then, Mailbox can directly be copied into memory. // Allocate ACPI NVS memory for new Mailbox and Debug Port Handle buffer // Status = PeiServicesAllocatePages ( EfiACPIMemoryNVS, EFI_SIZE_TO_PAGES (sizeof(DEBUG_AGENT_MAILBOX) + PcdGet16(PcdDebugPortHandleBufferSize)), &Address ); if (EFI_ERROR (Status)) { DEBUG ((EFI_D_ERROR, "DebugAgent: Failed to allocate pages!\n")); CpuDeadLoop (); } NewMailbox = (DEBUG_AGENT_MAILBOX *) (UINTN) Address; // // Copy Mailbox and Debug Port Handle buffer to new location in ACPI NVS memory, because original Mailbox // and Debug Port Handle buffer in the allocated pool that may be marked as free by DXE Core after DXE Core // reallocates the HOB. // CopyMem (NewMailbox, Mailbox, sizeof (DEBUG_AGENT_MAILBOX)); CopyMem (NewMailbox + 1, (VOID *)(UINTN)Mailbox->DebugPortHandle, PcdGet16(PcdDebugPortHandleBufferSize)); UpdateMailboxContent (NewMailbox, DEBUG_MAILBOX_DEBUG_PORT_HANDLE_INDEX, (UINT64)(UINTN)(NewMailbox + 1)); MailboxLocation = (UINT64)(UINTN)NewMailbox; // // Build mailbox location in HOB // MailboxLocationPointer = BuildGuidDataHob ( &gEfiDebugAgentGuid, &MailboxLocation, sizeof (UINT64) ); } // // Update IDT entry to save the location saved mailbox pointer // SetLocationSavedMailboxPointerInIdtEntry (MailboxLocationPointer); break; case DEBUG_AGENT_INIT_PEI: if (Context == NULL) { DEBUG ((EFI_D_ERROR, "DebugAgent: Input parameter Context cannot be NULL!\n")); CpuDeadLoop (); } // // Check if Debug Agent has initialized before // if (IsDebugAgentInitialzed()) { DEBUG ((EFI_D_WARN, "Debug Agent: It has already initialized in SEC Core!\n")); break; } // // Install Vector Handoff Info PPI to persist vectors used by Debug Agent // Status = PeiServicesInstallPpi (&mVectorHandoffInfoPpiList[0]); if (EFI_ERROR (Status)) { DEBUG ((EFI_D_ERROR, "DebugAgent: Failed to install Vector Handoff Info PPI!\n")); CpuDeadLoop (); } // // Set up IDT entries // InitializeDebugIdt (); // // Build mailbox in HOB and setup Mailbox Set In Pei flag // Mailbox = AllocateZeroPool (sizeof (DEBUG_AGENT_MAILBOX)); if (Mailbox == NULL) { DEBUG ((EFI_D_ERROR, "DebugAgent: Failed to allocate memory!\n")); CpuDeadLoop (); } else { MailboxLocation = (UINT64)(UINTN)Mailbox; MailboxLocationPointer = BuildGuidDataHob ( &gEfiDebugAgentGuid, &MailboxLocation, sizeof (UINT64) ); // // Initialize Debug Timer hardware and save its frequency // InitializeDebugTimer (&DebugTimerFrequency, TRUE); UpdateMailboxContent (Mailbox, DEBUG_MAILBOX_DEBUG_TIMER_FREQUENCY, DebugTimerFrequency); // // Update IDT entry to save the location pointer saved mailbox pointer // SetLocationSavedMailboxPointerInIdtEntry (MailboxLocationPointer); } // // Save init arch type when debug agent initialized // SetDebugFlag (DEBUG_AGENT_FLAG_INIT_ARCH, DEBUG_ARCH_SYMBOL); // // Register for a callback once memory has been initialized. // If memery has been ready, the callback funtion will be invoked immediately // Status = PeiServicesNotifyPpi (&mMemoryDiscoveredNotifyList[0]); if (EFI_ERROR (Status)) { DEBUG ((EFI_D_ERROR, "DebugAgent: Failed to register memory discovered callback function!\n")); CpuDeadLoop (); } // // Set HOB check flag if memory has not been ready yet // if (GetDebugFlag (DEBUG_AGENT_FLAG_MEMORY_READY) == 0) { SetDebugFlag (DEBUG_AGENT_FLAG_CHECK_MAILBOX_IN_HOB, 1); } Phase2Context.InitFlag = InitFlag; Phase2Context.Context = Context; Phase2Context.Function = Function; DebugPortInitialize ((VOID *) &Phase2Context, InitializeDebugAgentPhase2); FindAndReportModuleImageInfo (4); break; case DEBUG_AGENT_INIT_THUNK_PEI_IA32TOX64: if (Context == NULL) { DEBUG ((EFI_D_ERROR, "DebugAgent: Input parameter Context cannot be NULL!\n")); CpuDeadLoop (); } else { Ia32Idtr = (IA32_DESCRIPTOR *) Context; Ia32IdtEntry = (IA32_IDT_ENTRY *)(Ia32Idtr->Base); MailboxLocationPointer = (UINT64 *) (UINTN) (Ia32IdtEntry[DEBUG_MAILBOX_VECTOR].Bits.OffsetLow + (UINT32) (Ia32IdtEntry[DEBUG_MAILBOX_VECTOR].Bits.OffsetHigh << 16)); Mailbox = (DEBUG_AGENT_MAILBOX *) (UINTN)(*MailboxLocationPointer); // // Mailbox should valid and setup before executing thunk code // VerifyMailboxChecksum (Mailbox); DebugPortHandle = (UINT64) (UINTN)DebugPortInitialize ((VOID *)(UINTN)Mailbox->DebugPortHandle, NULL); UpdateMailboxContent (Mailbox, DEBUG_MAILBOX_DEBUG_PORT_HANDLE_INDEX, DebugPortHandle); // // Set up IDT entries // InitializeDebugIdt (); // // Update IDT entry to save location pointer saved the mailbox pointer // SetLocationSavedMailboxPointerInIdtEntry (MailboxLocationPointer); FindAndReportModuleImageInfo (4); } break; default: // // Only DEBUG_AGENT_INIT_PREMEM_SEC and DEBUG_AGENT_INIT_POSTMEM_SEC are allowed for this // Debug Agent library instance. // DEBUG ((EFI_D_ERROR, "Debug Agent: The InitFlag value is not allowed!\n")); CpuDeadLoop (); break; } if (InitFlag == DEBUG_AGENT_INIT_POSTMEM_SEC) { // // Restore CPU Interrupt state and keep debug timer interrupt state as is // in DEBUG_AGENT_INIT_POSTMEM_SEC case // SetInterruptState (CpuInterruptState); } else { // // Enable Debug Timer interrupt // SaveAndSetDebugTimerInterrupt (TRUE); // // Enable CPU interrupts so debug timer interrupts can be delivered // EnableInterrupts (); } // // If Function is not NULL, invoke it always whatever debug agent was initialized sucesssfully or not. // if (Function != NULL) { Function (Context); } // // Set return status for DEBUG_AGENT_INIT_PEI // if (InitFlag == DEBUG_AGENT_INIT_PEI && Context != NULL) { *(EFI_STATUS *)Context = EFI_SUCCESS; } }
/** Debug Agent provided notify callback function on Memory Discovered PPI. @param[in] PeiServices Indirect reference to the PEI Services Table. @param[in] NotifyDescriptor Address of the notification descriptor data structure. @param[in] Ppi Address of the PPI that was installed. @retval EFI_SUCCESS If the function completed successfully. **/ EFI_STATUS EFIAPI DebugAgentCallbackMemoryDiscoveredPpi ( IN EFI_PEI_SERVICES **PeiServices, IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDescriptor, IN VOID *Ppi ) { EFI_STATUS Status; DEBUG_AGENT_MAILBOX *Mailbox; BOOLEAN InterruptStatus; EFI_PHYSICAL_ADDRESS Address; DEBUG_AGENT_MAILBOX *NewMailbox; UINT64 *MailboxLocationInHob; // // Save and disable original interrupt status // InterruptStatus = SaveAndDisableInterrupts (); // // Allocate ACPI NVS memory for new Mailbox and Debug Port Handle buffer // Status = PeiServicesAllocatePages ( EfiACPIMemoryNVS, EFI_SIZE_TO_PAGES (sizeof(DEBUG_AGENT_MAILBOX) + PcdGet16(PcdDebugPortHandleBufferSize)), &Address ); ASSERT_EFI_ERROR (Status); NewMailbox = (DEBUG_AGENT_MAILBOX *) (UINTN) Address; // // Copy Mailbox and Debug Port Handle buffer to new location in ACPI NVS memory, because original Mailbox // and Debug Port Handle buffer in the allocated pool that may be marked as free by DXE Core after DXE Core // reallocates the HOB. // Mailbox = GetMailboxPointer (); CopyMem (NewMailbox, Mailbox, sizeof (DEBUG_AGENT_MAILBOX)); CopyMem (NewMailbox + 1, (VOID *)(UINTN)Mailbox->DebugPortHandle, PcdGet16(PcdDebugPortHandleBufferSize)); // // Update Mailbox Location pointer in GUIDed HOB and IDT entry with new one // MailboxLocationInHob = GetMailboxLocationFromHob (); ASSERT (MailboxLocationInHob != NULL); *MailboxLocationInHob = (UINT64)(UINTN)NewMailbox; SetLocationSavedMailboxPointerInIdtEntry (MailboxLocationInHob); // // Update Debug Port Handle in new Mailbox // UpdateMailboxContent (NewMailbox, DEBUG_MAILBOX_DEBUG_PORT_HANDLE_INDEX, (UINT64)(UINTN)(NewMailbox + 1)); // // Set physical memory ready flag // SetDebugFlag (DEBUG_AGENT_FLAG_MEMORY_READY, 1); if (IsHostAttached ()) { // // Trigger one software interrupt to inform HOST // TriggerSoftInterrupt (MEMORY_READY_SIGNATURE); } // // Restore interrupt state. // SetInterruptState (InterruptStatus); return EFI_SUCCESS; }
/** This is FRM module entrypoint. @param CommunicationData FRM communication data. @retval RETURN_SUCCESS FRM is launched. @retval RETURN_UNSUPPORTED FRM is unsupproted. **/ RETURN_STATUS _ModuleEntryPoint ( IN FRM_COMMUNICATION_DATA *CommunicationData ) { BOOLEAN InterruptEnabled; if ((AsmReadMsr64 (IA32_FEATURE_CONTROL_MSR_INDEX) & IA32_FEATURE_CONTROL_VMX) == 0) { DEBUG ((EFI_D_ERROR, "(FRM) !!!VMX not enabled!\n")); return RETURN_UNSUPPORTED; } if (mAlreadyEntered) { return FrmS3Entrypoint (); } InterruptEnabled = SaveAndDisableInterrupts (); if (sizeof(UINTN) == sizeof(UINT32)) { DEBUG ((EFI_D_INFO, "(FRM) !!!FrmEntrypoint32!!!\n")); } else { DEBUG ((EFI_D_INFO, "(FRM) !!!FrmEntrypoint64!!!\n")); } DEBUG ((EFI_D_INFO, "(FRM) !!!FRM build time - %a %a!!!\n", (CHAR8 *)__DATE__, (CHAR8 *)__TIME__)); CopyMem (&mCommunicationData, CommunicationData, sizeof(mCommunicationData)); DumpVmxCapabillityMsr (); DEBUG ((EFI_D_INFO, "(FRM) HighMemoryBase - %016lx\n", mCommunicationData.HighMemoryBase)); DEBUG ((EFI_D_INFO, "(FRM) HighMemorySize - %016lx\n", mCommunicationData.HighMemorySize)); DEBUG ((EFI_D_INFO, "(FRM) LowMemoryBase - %016lx\n", mCommunicationData.LowMemoryBase)); DEBUG ((EFI_D_INFO, "(FRM) LowMemorySize - %016lx\n", mCommunicationData.LowMemorySize)); DEBUG ((EFI_D_INFO, "(FRM) ImageBase - %016lx\n", mCommunicationData.ImageBase)); DEBUG ((EFI_D_INFO, "(FRM) ImageSize - %016lx\n", mCommunicationData.ImageSize)); DEBUG ((EFI_D_INFO, "(FRM) TimerPeriod - %016lx\n", mCommunicationData.TimerPeriod)); DEBUG ((EFI_D_INFO, "(FRM) AcpiRsdp - %016lx\n", mCommunicationData.AcpiRsdp)); DEBUG ((EFI_D_INFO, "(FRM) SmMonitorService - %016lx\n", mCommunicationData.SmMonitorServiceProtocol)); DEBUG ((EFI_D_INFO, "(FRM) SmMonitorBase - %016lx\n", mCommunicationData.SmMonitorServiceImageBase)); DEBUG ((EFI_D_INFO, "(FRM) SmMonitorSize - %016lx\n", mCommunicationData.SmMonitorServiceImageSize)); mHostContextCommon.ImageBase = mCommunicationData.ImageBase; mHostContextCommon.ImageSize = mCommunicationData.ImageSize; // // Prepare heap, then we can use memory service // InitHeap (); // after that we can use mHostContextCommon InitializeSpinLock (&mHostContextCommon.DebugLock); // after that we can use AcquireSpinLock/ReleaseSpinLock (&mHostContextCommon.DebugLock) to control block level debug. InitializeSpinLock (&mHostContextCommon.MemoryLock); // after that we can use MemoryServices InitBasicContext (); InitHostContext (); InitGuestContext (); LauchGuest (); mAlreadyEntered = TRUE; if (InterruptEnabled) { EnableInterrupts(); } return RETURN_SUCCESS; }
/** Initialize debug agent. This function is used to set up debug enviroment 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 interrupt to support break-in feature. If this function is called by DXE module, Context must be NULL. It will enable interrupt to support break-in feature. @param[in] InitFlag Init flag is used to decide initialize process. @param[in] Context Context needed according to InitFlag. @param[in] Function Continue function called by debug agent library; it was optional. **/ VOID EFIAPI InitializeDebugAgent ( IN UINT32 InitFlag, IN VOID *Context, OPTIONAL IN DEBUG_AGENT_CONTINUE Function OPTIONAL ) { UINT64 *MailboxLocation; DEBUG_AGENT_MAILBOX *Mailbox; BOOLEAN InterruptStatus; VOID *HobList; IA32_DESCRIPTOR IdtDescriptor; IA32_DESCRIPTOR *Ia32Idtr; IA32_IDT_ENTRY *Ia32IdtEntry; if (InitFlag == DEBUG_AGENT_INIT_DXE_AP) { // // Invoked by AP, enable interrupt to let AP could receive IPI from other processors // EnableInterrupts (); return ; } // // Disable Debug Timer interrupt // SaveAndSetDebugTimerInterrupt (FALSE); // // Save and disable original interrupt status // InterruptStatus = SaveAndDisableInterrupts (); // // Try to get mailbox firstly // HobList = NULL; Mailbox = NULL; MailboxLocation = NULL; switch (InitFlag) { case DEBUG_AGENT_INIT_DXE_LOAD: // // Check if Debug Agent has been initialized before // if (IsDebugAgentInitialzed ()) { DEBUG ((EFI_D_INFO, "Debug Agent: The former agent will be overwritten by the new one!\n")); } mMultiProcessorDebugSupport = TRUE; // // Save original IDT table // AsmReadIdtr (&IdtDescriptor); mSaveIdtTableSize = IdtDescriptor.Limit + 1; mSavedIdtTable = AllocateCopyPool (mSaveIdtTableSize, (VOID *) IdtDescriptor.Base); // // Initialize Debug Timer hardware and save its initial count // mDebugMpContext.DebugTimerInitCount = InitializeDebugTimer (); // // Check if Debug Agent initialized in DXE phase // Mailbox = GetMailboxFromConfigurationTable (); if (Mailbox == NULL) { // // Try to get mailbox from GUIDed HOB build in PEI // HobList = GetHobList (); Mailbox = GetMailboxFromHob (HobList); } // // Set up IDT table and prepare for IDT entries // SetupDebugAgentEnviroment (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() // InternalConstructorWorker (); // // Enable interrupt to receive Debug Timer interrupt // EnableInterrupts (); mDebugAgentInitialized = TRUE; FindAndReportModuleImageInfo (SIZE_4KB); *(EFI_STATUS *)Context = EFI_SUCCESS; if (gST->ConOut != NULL) { Print (L"Debug Agent: Initialized successfully!\r\n"); Print (L"If the Debug Port is serial port, please make sure this serial port isn't connected by ISA Serial driver\r\n"); Print (L"You could do the following steps to disconnect the serial port:\r\n"); Print (L"1: Shell> drivers\r\n"); Print (L" ...\r\n"); Print (L" V VERSION E G G #D #C DRIVER NAME IMAGE NAME\r\n"); Print (L" == ======== = = = == == =================================== ===================\r\n"); Print (L" 8F 0000000A B - - 1 14 PCI Bus Driver PciBusDxe\r\n"); Print (L" 91 00000010 ? - - - - ATA Bus Driver AtaBusDxe\r\n"); Print (L" ...\r\n"); Print (L" A7 0000000A B - - 1 1 ISA Serial Driver IsaSerialDxe\r\n"); Print (L" ...\r\n"); Print (L"2: Shell> dh -d A7\r\n"); Print (L" A7: Image(IsaSerialDxe) ImageDevPath (..9FB3-11D4-9A3A-0090273FC14D))DriverBinding ComponentName ComponentName2\r\n"); Print (L" Driver Name : ISA Serial Driver\r\n"); Print (L" Image Name : FvFile(93B80003-9FB3-11D4-9A3A-0090273FC14D)\r\n"); Print (L" Driver Version : 0000000A\r\n"); Print (L" Driver Type : BUS\r\n"); Print (L" Configuration : NO\r\n"); Print (L" Diagnostics : NO\r\n"); Print (L" Managing :\r\n"); Print (L" Ctrl[EA] : PciRoot(0x0)/Pci(0x1F,0x0)/Serial(0x0)\r\n"); Print (L" Child[EB] : PciRoot(0x0)/Pci(0x1F,0x0)/Serial(0x0)/Uart(115200,8,N,1)\r\n"); Print (L"3: Shell> disconnect EA\r\n"); Print (L"4: Shell> load -nc DebugAgentDxe.efi\r\n\r\n"); } break; case DEBUG_AGENT_INIT_DXE_UNLOAD: if (mDebugAgentInitialized) { if (IsHostAttached ()) { Print (L"Debug Agent: Host is still connected, please de-attach TARGET firstly!\r\n"); *(EFI_STATUS *)Context = EFI_ACCESS_DENIED; // // Enable Debug Timer interrupt again // SaveAndSetDebugTimerInterrupt (TRUE); } else { // // Restore original IDT table // AsmReadIdtr (&IdtDescriptor); IdtDescriptor.Limit = (UINT16) (mSaveIdtTableSize - 1); CopyMem ((VOID *) IdtDescriptor.Base, mSavedIdtTable, mSaveIdtTableSize); AsmWriteIdtr (&IdtDescriptor); FreePool (mSavedIdtTable); mDebugAgentInitialized = FALSE; *(EFI_STATUS *)Context = EFI_SUCCESS; } } else { Print (L"Debug Agent: It hasn't been initialized, cannot unload it!\r\n"); *(EFI_STATUS *)Context = EFI_NOT_STARTED; } // // Restore interrupt state. // SetInterruptState (InterruptStatus); break; case DEBUG_AGENT_INIT_DXE_CORE: mDxeCoreFlag = TRUE; mMultiProcessorDebugSupport = TRUE; // // Initialize Debug Timer hardware and its initial count // mDebugMpContext.DebugTimerInitCount = InitializeDebugTimer (); // // Try to get mailbox from GUIDed HOB build in PEI // HobList = Context; Mailbox = GetMailboxFromHob (HobList); // // Set up IDT table and prepare for IDT entries // SetupDebugAgentEnviroment (Mailbox); // // Enable interrupt to receive Debug Timer interrupt // EnableInterrupts (); break; case DEBUG_AGENT_INIT_S3: if (Context != NULL) { Ia32Idtr = (IA32_DESCRIPTOR *) Context; Ia32IdtEntry = (IA32_IDT_ENTRY *)(Ia32Idtr->Base); MailboxLocation = (UINT64 *) (UINTN) (Ia32IdtEntry[DEBUG_MAILBOX_VECTOR].Bits.OffsetLow + (Ia32IdtEntry[DEBUG_MAILBOX_VECTOR].Bits.OffsetHigh << 16)); Mailbox = (DEBUG_AGENT_MAILBOX *)(UINTN)(*MailboxLocation); VerifyMailboxChecksum (Mailbox); } // // Save Mailbox pointer in global variable // mMailboxPointer = Mailbox; // // Set up IDT table and prepare for IDT entries // SetupDebugAgentEnviroment (Mailbox); // // Disable interrupt // DisableInterrupts (); FindAndReportModuleImageInfo (SIZE_4KB); if (GetDebugFlag (DEBUG_AGENT_FLAG_BREAK_BOOT_SCRIPT) == 1) { // // If Boot Script entry break is set, code will be break at here. // CpuBreakpoint (); } break; default: // // Only DEBUG_AGENT_INIT_PREMEM_SEC and DEBUG_AGENT_INIT_POSTMEM_SEC are allowed for this // Debug Agent library instance. // DEBUG ((EFI_D_ERROR, "Debug Agent: The InitFlag value is not allowed!\n")); CpuDeadLoop (); break; } }
/** Initialize debug agent. This function is used to set up debug enviroment 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 interrupt to support break-in feature. If this function is called by DXE module, Context must be NULL. It will enable interrupt to support break-in feature. @param[in] InitFlag Init flag is used to decide initialize process. @param[in] Context Context needed according to InitFlag. @param[in] Function Continue function called by debug agent library; it was optional. **/ VOID EFIAPI InitializeDebugAgent ( IN UINT32 InitFlag, IN VOID *Context, OPTIONAL IN DEBUG_AGENT_CONTINUE Function OPTIONAL ) { DEBUG_AGENT_MAILBOX *Mailbox; IA32_DESCRIPTOR Idtr; UINT16 IdtEntryCount; BOOLEAN InterruptStatus; if (InitFlag != DEBUG_AGENT_INIT_DXE_CORE && InitFlag != DEBUG_AGENT_INIT_S3 && InitFlag != DEBUG_AGENT_INIT_DXE_AP) { return; } // // Save and disable original interrupt status // InterruptStatus = SaveAndDisableInterrupts (); if (InitFlag == DEBUG_AGENT_INIT_DXE_CORE) { // // Try to get Mailbox from GUIDed HOB. // mDxeCoreFlag = TRUE; Mailbox = GetMailboxFromHob (Context); // // Clear Break CPU index value // mDebugMpContext.BreakAtCpuIndex = (UINT32) -1; } else if (InitFlag == DEBUG_AGENT_INIT_DXE_AP) { EnableInterrupts (); return; } else { // // If it is in S3 path, needn't to install configuration table. // Mailbox = NULL; } if (Mailbox != NULL) { // // If Mailbox exists, copy it into one global variable. // CopyMem (&mMailbox, Mailbox, sizeof (DEBUG_AGENT_MAILBOX)); } else { // // If Mailbox not exists, used the local Mailbox. // ZeroMem (&mMailbox, sizeof (DEBUG_AGENT_MAILBOX)); } mMailboxPointer = &mMailbox; // // Get original IDT address and size. // AsmReadIdtr ((IA32_DESCRIPTOR *) &Idtr); IdtEntryCount = (UINT16) ((Idtr.Limit + 1) / sizeof (IA32_IDT_GATE_DESCRIPTOR)); if (IdtEntryCount < 33) { Idtr.Limit = (UINT16) (sizeof (IA32_IDT_GATE_DESCRIPTOR) * 33 - 1); Idtr.Base = (UINTN) &mIdtEntryTable; ZeroMem (&mIdtEntryTable, Idtr.Limit + 1); AsmWriteIdtr ((IA32_DESCRIPTOR *) &Idtr); } // // Initialize the IDT table entries to support source level debug. // InitializeDebugIdt (); // // Initialize debug communication port // mMailboxPointer->DebugPortHandle = (UINT64) (UINTN)DebugPortInitialize ((VOID *)(UINTN)mMailbox.DebugPortHandle, NULL); InitializeSpinLock (&mDebugMpContext.MpContextSpinLock); InitializeSpinLock (&mDebugMpContext.DebugPortSpinLock); if (InitFlag == DEBUG_AGENT_INIT_DXE_CORE) { // // Initialize Debug Timer hardware and enable interrupt. // InitializeDebugTimer (); EnableInterrupts (); return; } else { // // Disable Debug Timer interrupt in S3 path. // SaveAndSetDebugTimerInterrupt (FALSE); // // Restore interrupt state. // SetInterruptState (InterruptStatus); } }