Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

128 lines
3.6 KiB
C
Raw Permalink Normal View History

2008-04-10 08:49:28 +00:00
/** @file
Top level C file for debug support driver. Contains initialization function.
2007-07-03 14:09:20 +00:00
2018-06-27 21:08:52 +08:00
Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
2007-07-03 14:09:20 +00:00
2008-04-10 08:49:28 +00:00
**/
2007-07-03 14:09:20 +00:00
2008-11-04 06:31:13 +00:00
#include "PlDebugSupport.h"
2007-07-03 14:09:20 +00:00
2008-12-11 08:38:20 +00:00
EFI_DEBUG_SUPPORT_PROTOCOL mDebugSupportProtocolInterface = {
2007-07-03 14:09:20 +00:00
EFI_ISA,
GetMaximumProcessorIndex,
RegisterPeriodicCallback,
RegisterExceptionCallback,
InvalidateInstructionCache
};
2008-11-05 08:44:03 +00:00
/**
2018-06-27 21:08:52 +08:00
Debug Support Driver entry point.
2008-11-05 08:44:03 +00:00
2018-06-27 21:08:52 +08:00
Checks to see if there's not already a Debug Support protocol installed for
2008-12-11 08:38:20 +00:00
the selected processor before installing it.
2008-11-05 08:44:03 +00:00
2018-06-27 21:08:52 +08:00
@param[in] ImageHandle The firmware allocated handle for the EFI image.
2008-11-05 08:44:03 +00:00
@param[in] SystemTable A pointer to the EFI System Table.
2018-06-27 21:08:52 +08:00
2008-11-05 08:44:03 +00:00
@retval EFI_SUCCESS The entry point is executed successfully.
2008-12-30 07:34:44 +00:00
@retval EFI_ALREADY_STARTED Debug Support protocol is installed already.
2008-11-05 08:44:03 +00:00
@retval other Some error occurs when executing this entry point.
**/
2007-07-03 14:09:20 +00:00
EFI_STATUS
EFIAPI
2007-07-03 14:09:20 +00:00
InitializeDebugSupportDriver (
IN EFI_HANDLE ImageHandle,
IN EFI_SYSTEM_TABLE *SystemTable
)
{
EFI_LOADED_IMAGE_PROTOCOL *LoadedImageProtocolPtr;
EFI_STATUS Status;
EFI_HANDLE Handle;
EFI_HANDLE *HandlePtr;
UINTN NumHandles;
EFI_DEBUG_SUPPORT_PROTOCOL *DebugSupportProtocolPtr;
//
// First check to see that the debug support protocol for this processor
// type is not already installed
//
Status = gBS->LocateHandleBuffer (
ByProtocol,
&gEfiDebugSupportProtocolGuid,
NULL,
&NumHandles,
&HandlePtr
);
if (Status != EFI_NOT_FOUND) {
do {
NumHandles--;
Status = gBS->OpenProtocol (
HandlePtr[NumHandles],
&gEfiDebugSupportProtocolGuid,
(VOID **)&DebugSupportProtocolPtr,
ImageHandle,
NULL,
EFI_OPEN_PROTOCOL_GET_PROTOCOL
);
2008-12-11 08:38:20 +00:00
if ((Status == EFI_SUCCESS) && (DebugSupportProtocolPtr->Isa == EFI_ISA)) {
//
// a Debug Support protocol has been installed for this processor
//
2007-07-03 14:09:20 +00:00
FreePool (HandlePtr);
Status = EFI_ALREADY_STARTED;
goto ErrExit;
}
} while (NumHandles > 0);
2021-12-05 14:54:02 -08:00
2007-07-03 14:09:20 +00:00
FreePool (HandlePtr);
}
//
// Get our image information and install platform specific unload handler
//
Status = gBS->OpenProtocol (
ImageHandle,
&gEfiLoadedImageProtocolGuid,
(VOID **)&LoadedImageProtocolPtr,
ImageHandle,
NULL,
EFI_OPEN_PROTOCOL_GET_PROTOCOL
);
ASSERT (!EFI_ERROR (Status));
if (Status != EFI_SUCCESS) {
goto ErrExit;
}
2008-11-05 08:44:03 +00:00
LoadedImageProtocolPtr->Unload = PlUnloadDebugSupportDriver;
2007-07-03 14:09:20 +00:00
//
2018-06-27 21:08:52 +08:00
// Call hook for processor specific initialization
2007-07-03 14:09:20 +00:00
//
2008-11-05 08:44:03 +00:00
Status = PlInitializeDebugSupportDriver ();
2007-07-03 14:09:20 +00:00
ASSERT (!EFI_ERROR (Status));
if (Status != EFI_SUCCESS) {
goto ErrExit;
}
//
2008-12-11 08:38:20 +00:00
// Install Debug Support protocol to new handle
2007-07-03 14:09:20 +00:00
//
Handle = NULL;
Status = gBS->InstallProtocolInterface (
&Handle,
&gEfiDebugSupportProtocolGuid,
EFI_NATIVE_INTERFACE,
2008-12-11 08:38:20 +00:00
&mDebugSupportProtocolInterface
2007-07-03 14:09:20 +00:00
);
ASSERT (!EFI_ERROR (Status));
if (Status != EFI_SUCCESS) {
goto ErrExit;
}
ErrExit:
return Status;
}