Last change
on this file since 107044 was 101291, checked in by vboxsync, 16 months ago |
EFI/FirmwareNew: Make edk2-stable202308 build on all supported platforms (using gcc at least, msvc not tested yet), bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
783 bytes
|
Line | |
---|
1 | /** @file
|
---|
2 | This header file declares Trace Hub related structure.
|
---|
3 |
|
---|
4 | Copyright (c) 2023, Intel Corporation. All rights reserved.<BR>
|
---|
5 |
|
---|
6 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 | **/
|
---|
8 |
|
---|
9 | #ifndef TRACE_HUB_DEBUG_INFO_HOB_H_
|
---|
10 | #define TRACE_HUB_DEBUG_INFO_HOB_H_
|
---|
11 |
|
---|
12 | #define TRACEHUB_DEBUG_INFO_HOB_REVISION 1
|
---|
13 |
|
---|
14 | typedef struct {
|
---|
15 | UINT16 Revision; // Structure revision
|
---|
16 | BOOLEAN Flag; // Flag to enable or disable Trace Hub debug message.
|
---|
17 | UINT8 DebugLevel; // Debug level for Trace Hub.
|
---|
18 | UINT8 Rvsd[4]; // Reserved for future use
|
---|
19 | UINT64 TraceHubMmioAddress; // MMIO address where Trace Hub debug message output to.
|
---|
20 | } TRACEHUB_DEBUG_INFO_HOB;
|
---|
21 |
|
---|
22 | extern GUID gTraceHubDebugInfoHobGuid;
|
---|
23 |
|
---|
24 | #endif // TRACE_HUB_DEBUG_INFO_HOB_H_
|
---|
Note:
See
TracBrowser
for help on using the repository browser.