Changeset 58459 in vbox for trunk/src/VBox/Devices/EFI/Firmware/SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgent/SecPeiDebugAgentLib.h
- Timestamp:
- Oct 28, 2015 8:17:18 PM (9 years ago)
- Location:
- trunk/src/VBox/Devices/EFI/Firmware
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/Firmware
-
Property svn:mergeinfo
set to (toggle deleted branches)
/vendor/edk2/current 103735-103757
-
Property svn:mergeinfo
set to (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/Firmware/SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgent/SecPeiDebugAgentLib.h
r48674 r58459 2 2 Header file for Sec Core Debug Agent Library instance. 3 3 4 Copyright (c) 2010 , Intel Corporation. All rights reserved.<BR>4 Copyright (c) 2010 - 2013, Intel Corporation. All rights reserved.<BR> 5 5 This program and the accompanying materials 6 6 are licensed and made available under the terms and conditions of the BSD License … … 17 17 18 18 #include <PiPei.h> 19 19 #include <Ppi/MemoryDiscovered.h> 20 #include <Library/PeiServicesLib.h> 21 #include <Library/MemoryAllocationLib.h> 20 22 #include "DebugAgent.h" 21 23 22 24 typedef struct { 25 UINT32 InitFlag; 23 26 VOID *Context; 24 27 DEBUG_AGENT_CONTINUE Function; 25 28 } DEBUG_AGENT_PHASE2_CONTEXT; 26 29 30 /** 31 Caller provided function to be invoked at the end of DebugPortInitialize(). 32 33 Refer to the descrption for DebugPortInitialize() for more details. 34 35 @param[in] Context The first input argument of DebugPortInitialize(). 36 @param[in] DebugPortHandle Debug port handle created by Debug Communication Libary. 37 38 **/ 39 VOID 40 EFIAPI 41 InitializeDebugAgentPhase2 ( 42 IN VOID *Context, 43 IN DEBUG_PORT_HANDLE DebugPortHandle 44 ); 45 46 /** 47 Debug Agent provided notify callback function on Memory Discovered PPI. 48 49 @param[in] PeiServices Indirect reference to the PEI Services Table. 50 @param[in] NotifyDescriptor Address of the notification descriptor data structure. 51 @param[in] Ppi Address of the PPI that was installed. 52 53 @retval EFI_SUCCESS If the function completed successfully. 54 55 **/ 56 EFI_STATUS 57 EFIAPI 58 DebugAgentCallbackMemoryDiscoveredPpi ( 59 IN EFI_PEI_SERVICES **PeiServices, 60 IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDescriptor, 61 IN VOID *Ppi 62 ); 63 27 64 #endif 28 65
Note:
See TracChangeset
for help on using the changeset viewer.