2008-04-10 10:49:28 +02:00
|
|
|
/** @file
|
|
|
|
Top level C file for debug support driver. Contains initialization function.
|
2007-07-03 16:09:20 +02:00
|
|
|
|
2010-04-24 11:33:45 +02:00
|
|
|
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
|
|
|
|
This program and the accompanying materials
|
2008-04-10 10:49:28 +02:00
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
2007-07-03 16:09:20 +02:00
|
|
|
|
2008-04-10 10:49:28 +02:00
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2007-07-03 16:09:20 +02:00
|
|
|
|
2008-04-10 10:49:28 +02:00
|
|
|
**/
|
2007-07-03 16:09:20 +02:00
|
|
|
|
2008-11-04 07:31:13 +01:00
|
|
|
#include "PlDebugSupport.h"
|
2007-07-03 16:09:20 +02:00
|
|
|
|
2008-12-11 09:38:20 +01:00
|
|
|
EFI_DEBUG_SUPPORT_PROTOCOL mDebugSupportProtocolInterface = {
|
2007-07-03 16:09:20 +02:00
|
|
|
EFI_ISA,
|
|
|
|
GetMaximumProcessorIndex,
|
|
|
|
RegisterPeriodicCallback,
|
|
|
|
RegisterExceptionCallback,
|
|
|
|
InvalidateInstructionCache
|
|
|
|
};
|
|
|
|
|
2008-11-05 09:44:03 +01:00
|
|
|
|
|
|
|
/**
|
2008-12-11 09:38:20 +01:00
|
|
|
Debug Support Driver entry point.
|
2008-11-05 09:44:03 +01:00
|
|
|
|
2008-12-11 09:38:20 +01:00
|
|
|
Checks to see if there's not already a Debug Support protocol installed for
|
|
|
|
the selected processor before installing it.
|
2008-11-05 09:44:03 +01:00
|
|
|
|
|
|
|
@param[in] ImageHandle The firmware allocated handle for the EFI image.
|
|
|
|
@param[in] SystemTable A pointer to the EFI System Table.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The entry point is executed successfully.
|
2008-12-30 08:34:44 +01:00
|
|
|
@retval EFI_ALREADY_STARTED Debug Support protocol is installed already.
|
2008-11-05 09:44:03 +01:00
|
|
|
@retval other Some error occurs when executing this entry point.
|
|
|
|
|
|
|
|
**/
|
2007-07-03 16:09:20 +02:00
|
|
|
EFI_STATUS
|
2009-04-10 22:58:18 +02:00
|
|
|
EFIAPI
|
2007-07-03 16:09:20 +02: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 09:38:20 +01:00
|
|
|
if ((Status == EFI_SUCCESS) && (DebugSupportProtocolPtr->Isa == EFI_ISA)) {
|
|
|
|
//
|
|
|
|
// a Debug Support protocol has been installed for this processor
|
|
|
|
//
|
2007-07-03 16:09:20 +02:00
|
|
|
FreePool (HandlePtr);
|
|
|
|
Status = EFI_ALREADY_STARTED;
|
|
|
|
goto ErrExit;
|
|
|
|
}
|
|
|
|
} while (NumHandles > 0);
|
|
|
|
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 09:44:03 +01:00
|
|
|
LoadedImageProtocolPtr->Unload = PlUnloadDebugSupportDriver;
|
2007-07-03 16:09:20 +02:00
|
|
|
|
|
|
|
//
|
2008-12-11 09:38:20 +01:00
|
|
|
// Call hook for processor specific initialization
|
2007-07-03 16:09:20 +02:00
|
|
|
//
|
2008-11-05 09:44:03 +01:00
|
|
|
Status = PlInitializeDebugSupportDriver ();
|
2007-07-03 16:09:20 +02:00
|
|
|
ASSERT (!EFI_ERROR (Status));
|
|
|
|
if (Status != EFI_SUCCESS) {
|
|
|
|
goto ErrExit;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2008-12-11 09:38:20 +01:00
|
|
|
// Install Debug Support protocol to new handle
|
2007-07-03 16:09:20 +02:00
|
|
|
//
|
|
|
|
Handle = NULL;
|
|
|
|
Status = gBS->InstallProtocolInterface (
|
|
|
|
&Handle,
|
|
|
|
&gEfiDebugSupportProtocolGuid,
|
|
|
|
EFI_NATIVE_INTERFACE,
|
2008-12-11 09:38:20 +01:00
|
|
|
&mDebugSupportProtocolInterface
|
2007-07-03 16:09:20 +02:00
|
|
|
);
|
|
|
|
ASSERT (!EFI_ERROR (Status));
|
|
|
|
if (Status != EFI_SUCCESS) {
|
|
|
|
goto ErrExit;
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrExit:
|
|
|
|
return Status;
|
|
|
|
}
|