-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
884ceb1
commit 0347b57
Showing
6 changed files
with
79 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/** @file | ||
This file defines GUIDs and data structure for producing HOB entry describing | ||
the location of pre-DXE logs. For platforms which use a Pre-DXE AdvancedLoggerLib | ||
implementation, this HOB is not necessary. | ||
Copyright (C) Microsoft Corporation. | ||
SPDX-License-Identifier: BSD-2-Clause-Patent | ||
**/ | ||
|
||
#ifndef __ADVANCED_LOGGER_PRE_DXE_LOGS_H__ | ||
#define __ADVANCED_LOGGER_PRE_DXE_LOGS_H__ | ||
|
||
typedef struct _ADVANCED_LOGGER_PRE_DXE_LOGS_HOB { | ||
UINT32 Signature; | ||
UINT64 BaseAddress; | ||
UINT64 LengthInBytes; | ||
} ADVANCED_LOGGER_PRE_DXE_LOGS_HOB; | ||
|
||
#define ADVANCED_LOGGER_PRE_DXE_LOGS_GUID \ | ||
{ \ | ||
0x751fc006, 0x5804, 0x440d, { 0x8b, 0x15, 0x61, 0x8c, 0xf6, 0x56, 0xae, 0x76 } \ | ||
} | ||
|
||
extern EFI_GUID gAdvancedLoggerPreDxeLogsGuid; | ||
|
||
#define ADVANCED_LOGGER_PRE_DXE_LOGS_SIGNATURE SIGNATURE_32 ('A', 'L', 'P', 'D') | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters