2024-04-28 09:30:23 +02:00
|
|
|
## @file
|
|
|
|
# This module provide a Standalone MM compliant implementation of MM IPL PEIM.
|
|
|
|
#
|
|
|
|
# Copyright (c) 2024, Intel Corporation. All rights reserved.<BR>
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
#
|
|
|
|
##
|
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = StandaloneMmIplPei
|
|
|
|
FILE_GUID = 578A0D17-2DC0-4C7D-A121-D8D771923BB0
|
|
|
|
MODULE_TYPE = PEIM
|
|
|
|
VERSION_STRING = 1.0
|
|
|
|
PI_SPECIFICATION_VERSION = 0x0001000A
|
|
|
|
ENTRY_POINT = StandaloneMmIplPeiEntry
|
|
|
|
|
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
|
|
|
# VALID_ARCHITECTURES = X64
|
|
|
|
#
|
|
|
|
|
|
|
|
[Sources]
|
|
|
|
StandaloneMmIplPei.c
|
|
|
|
StandaloneMmIplPei.h
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
2024-05-07 04:48:24 +02:00
|
|
|
StandaloneMmPkg/StandaloneMmPkg.dec
|
2024-04-28 09:30:23 +02:00
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
PeimEntryPoint
|
2024-05-07 09:46:49 +02:00
|
|
|
PeiServicesLib
|
2024-05-07 04:48:24 +02:00
|
|
|
DebugLib
|
|
|
|
HobLib
|
|
|
|
MemoryAllocationLib
|
|
|
|
MmUnblockMemoryLib
|
2024-05-07 09:46:49 +02:00
|
|
|
BaseMemoryLib
|
|
|
|
PeCoffLib
|
|
|
|
CacheMaintenanceLib
|
2024-04-28 09:30:23 +02:00
|
|
|
|
|
|
|
[Guids]
|
2024-05-07 04:48:24 +02:00
|
|
|
gMmCommBufferHobGuid
|
2024-05-07 09:46:49 +02:00
|
|
|
gEfiSmmSmramMemoryGuid
|
2024-04-28 09:30:23 +02:00
|
|
|
|
|
|
|
[Ppis]
|
2024-05-09 04:06:09 +02:00
|
|
|
gEfiPeiMmControlPpiGuid
|
|
|
|
gEfiPeiMmCommunicationPpiGuid
|
2024-04-28 09:30:23 +02:00
|
|
|
|
|
|
|
[Pcd]
|
2024-05-07 04:48:24 +02:00
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdMmCommBufferPages
|
2024-04-28 09:30:23 +02:00
|
|
|
|
|
|
|
[Depex]
|
2024-05-09 04:06:09 +02:00
|
|
|
gEfiPeiMmControlPpiGuid
|