-
Notifications
You must be signed in to change notification settings - Fork 127
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
55b5c27
commit 00f90c1
Showing
7 changed files
with
176 additions
and
3 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
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,31 @@ | ||
/** @file -- CpuMpDebug.h | ||
This protocol provides debug access to AP buffer information for validation and testing. | ||
Copyright (c) Microsoft Corporation. All rights reserved. | ||
SPDX-License-Identifier: BSD-2-Clause-Patent | ||
**/ | ||
|
||
#ifndef __CPU_MP_DEBUG_PROTOCOL__ | ||
#define __CPU_MP_DEBUG_PROTOCOL__ | ||
|
||
#define CPU_MP_DEBUG_PROTOCOL_GUID \ | ||
{ \ | ||
0xce05eb65, 0x9416, 0x4197, {0x98, 0x4b, 0xa2, 0x8b, 0x62, 0x9c, 0x64, 0x4d } \ | ||
} | ||
|
||
#define CPU_MP_DEBUG_SIGNATURE SIGNATURE_32 ('C','M','P','S') | ||
|
||
typedef struct _CPU_MP_DEBUG_PROTOCOL { | ||
UINT32 Signature; | ||
UINTN ApStackBuffer; | ||
UINTN ApStackSize; | ||
UINTN CpuNumber; | ||
BOOLEAN IsSwitchStack; | ||
LIST_ENTRY Link; | ||
} CPU_MP_DEBUG_PROTOCOL; | ||
|
||
extern EFI_GUID gCpuMpDebugProtocolGuid; | ||
|
||
#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