2010-02-26 06:38:04 +01:00
|
|
|
/** @file
|
|
|
|
Debug Agent Library provide source-level debug capability.
|
|
|
|
|
2010-04-24 11:49:11 +02:00
|
|
|
Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>
|
2010-07-19 04:26:09 +02:00
|
|
|
This program and the accompanying materials are licensed and made available under
|
|
|
|
the terms and conditions of the BSD License that accompanies this distribution.
|
2010-03-17 21:48:52 +01:00
|
|
|
The full text of the license may be found at
|
2010-07-19 04:26:09 +02:00
|
|
|
http://opensource.org/licenses/bsd-license.php.
|
2010-02-26 06:38:04 +01:00
|
|
|
|
2010-07-19 04:26:09 +02:00
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
2010-03-17 21:48:52 +01:00
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2010-02-26 06:38:04 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef __DEBUG_AGENT_LIB_H__
|
|
|
|
#define __DEBUG_AGENT_LIB_H__
|
|
|
|
|
|
|
|
#define DEBUG_AGENT_INIT_PREMEM_SEC 1
|
|
|
|
#define DEBUG_AGENT_INIT_POSTMEM_SEC 2
|
2010-03-13 17:52:46 +01:00
|
|
|
#define DEBUG_AGENT_INIT_DXE_CORE 3
|
2010-02-26 06:38:04 +01:00
|
|
|
#define DEBUG_AGENT_INIT_SMM 4
|
2010-02-27 18:04:12 +01:00
|
|
|
#define DEBUG_AGENT_INIT_ENTER_SMI 5
|
|
|
|
#define DEBUG_AGENT_INIT_EXIT_SMI 6
|
2010-03-13 17:52:46 +01:00
|
|
|
#define DEBUG_AGENT_INIT_S3 7
|
2010-07-19 04:26:09 +02:00
|
|
|
#define DEBUG_AGENT_INIT_DXE_AP 8
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Context for DEBUG_AGENT_INIT_POSTMEM_SEC
|
|
|
|
//
|
|
|
|
typedef struct {
|
|
|
|
UINTN HeapMigrateOffset;
|
|
|
|
UINTN StackMigrateOffset;
|
|
|
|
} DEBUG_AGENT_CONTEXT_POSTMEM_SEC;
|
|
|
|
|
|
|
|
/**
|
|
|
|
Caller provided function to be invoked at the end of InitializeDebugAgent().
|
|
|
|
|
|
|
|
Refer to the descrption for InitializeDebugAgent() for more details.
|
|
|
|
|
|
|
|
@param[in] Context The first input parameter of InitializeDebugAgent().
|
|
|
|
|
|
|
|
**/
|
|
|
|
typedef
|
|
|
|
VOID
|
|
|
|
(EFIAPI * DEBUG_AGENT_CONTINUE)(
|
|
|
|
IN VOID *Context
|
|
|
|
);
|
|
|
|
|
2010-02-26 06:38:04 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
Initialize debug agent.
|
|
|
|
|
2010-07-19 04:26:09 +02:00
|
|
|
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 Libary 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.
|
2010-02-26 06:38:04 +01:00
|
|
|
|
2010-07-19 04:26:09 +02:00
|
|
|
@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.
|
2010-02-26 06:38:04 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
EFIAPI
|
|
|
|
InitializeDebugAgent (
|
|
|
|
IN UINT32 InitFlag,
|
2010-07-19 04:26:09 +02:00
|
|
|
IN VOID *Context, OPTIONAL
|
|
|
|
IN DEBUG_AGENT_CONTINUE Function OPTIONAL
|
2010-02-26 06:38:04 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
2010-02-27 18:04:12 +01:00
|
|
|
Enable/Disable the interrupt of debug timer and return the interrupt state
|
|
|
|
prior to the operation.
|
2010-02-26 06:38:04 +01:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
2010-02-27 18:04:12 +01:00
|
|
|
@retval TRUE Debug timer interrupt were enabled on entry to this call.
|
|
|
|
@retval FALSE Debug timer interrupt were disabled on entry to this call.
|
|
|
|
|
2010-02-26 06:38:04 +01:00
|
|
|
**/
|
2010-02-27 18:04:12 +01:00
|
|
|
BOOLEAN
|
2010-02-26 06:38:04 +01:00
|
|
|
EFIAPI
|
2010-02-27 18:04:12 +01:00
|
|
|
SaveAndSetDebugTimerInterrupt (
|
2010-02-26 06:38:04 +01:00
|
|
|
IN BOOLEAN EnableStatus
|
|
|
|
);
|
|
|
|
|
|
|
|
#endif
|