-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
StandaloneMmPkg : Add MM core fv location PPI
Add MM core FV location PPI, it will include MM core FV location which could be in FSP-I or Bootloader MM FV. Signed-off-by: Hongbin1 Zhang <[email protected]> Cc: Jiewen Yao <[email protected]> Cc: Ray Ni <[email protected]> Cc: Star Zeng <[email protected]> Cc: Jiaxin Wu <[email protected]> Cc: Wei6 Xu <[email protected]> Cc: Sami Mujawar <[email protected]> Cc: Ard Biesheuvel <[email protected]> Cc: Supreeth Venkatesh <[email protected]>
- Loading branch information
1 parent
cef65b2
commit e905eea
Showing
2 changed files
with
38 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/** @file | ||
MM Core FV location PPI header file. | ||
MM Core FV location PPI is used by StandaloneMm IPL to find MM Core | ||
. | ||
Copyright (c) 2024, Intel Corporation. All rights reserved.<BR> | ||
SPDX-License-Identifier: BSD-2-Clause-Patent | ||
**/ | ||
|
||
#ifndef MM_CORE_FV_LOCATION_PPI_H_ | ||
#define MM_CORE_FV_LOCATION_PPI_H_ | ||
|
||
#pragma pack(1) | ||
|
||
/// | ||
/// Global ID for the MM_CORE_FV_LOCATION_PPI. | ||
/// | ||
#define MM_CORE_FV_LOCATION_GUID \ | ||
{ \ | ||
0x47a00618, 0x237a, 0x4386, { 0x8f, 0xc5, 0x2a, 0x86, 0xd8, 0xac, 0x41, 0x05 } \ | ||
} | ||
|
||
typedef struct { | ||
EFI_PHYSICAL_ADDRESS Address; | ||
UINT64 Size; | ||
} MM_CORE_FV_LOCATION_PPI; | ||
|
||
extern EFI_GUID gMmCoreFvLocationPpiGuid; | ||
|
||
#pragma pack() | ||
|
||
#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