Last change
on this file since 108794 was 108794, checked in by vboxsync, 2 weeks ago |
Devices/EFI/FirmwareNew: Merge edk2-stable202502 from the vendor branch and make it build for the important platforms, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
2.2 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # This module provide a Standalone MM compliant implementation of MM IPL PEIM.
|
---|
3 | #
|
---|
4 | # Copyright (c) 2024, Intel Corporation. All rights reserved.<BR>
|
---|
5 | #
|
---|
6 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 | #
|
---|
8 | ##
|
---|
9 |
|
---|
10 | [Defines]
|
---|
11 | INF_VERSION = 0x00010005
|
---|
12 | BASE_NAME = StandaloneMmIplPei
|
---|
13 | FILE_GUID = 578A0D17-2DC0-4C7D-A121-D8D771923BB0
|
---|
14 | MODULE_TYPE = PEIM
|
---|
15 | VERSION_STRING = 1.0
|
---|
16 | PI_SPECIFICATION_VERSION = 0x0001000A
|
---|
17 | ENTRY_POINT = StandaloneMmIplPeiEntry
|
---|
18 |
|
---|
19 | #
|
---|
20 | # The following information is for reference only and not required by the build tools.
|
---|
21 | #
|
---|
22 | # VALID_ARCHITECTURES = X64
|
---|
23 | #
|
---|
24 |
|
---|
25 | [Sources]
|
---|
26 | StandaloneMmIplPei.c
|
---|
27 | StandaloneMmIplPei.h
|
---|
28 | MmFoundationHob.c
|
---|
29 |
|
---|
30 | [Packages]
|
---|
31 | MdePkg/MdePkg.dec
|
---|
32 | MdeModulePkg/MdeModulePkg.dec
|
---|
33 | StandaloneMmPkg/StandaloneMmPkg.dec
|
---|
34 | UefiCpuPkg/UefiCpuPkg.dec
|
---|
35 |
|
---|
36 | [LibraryClasses]
|
---|
37 | PeimEntryPoint
|
---|
38 | PeiServicesLib
|
---|
39 | DebugLib
|
---|
40 | HobLib
|
---|
41 | MemoryAllocationLib
|
---|
42 | MmUnblockMemoryLib
|
---|
43 | BaseMemoryLib
|
---|
44 | PeCoffLib
|
---|
45 | CacheMaintenanceLib
|
---|
46 | MmPlatformHobProducerLib
|
---|
47 |
|
---|
48 | [Guids]
|
---|
49 | gMmCommBufferHobGuid
|
---|
50 | gEfiSmmSmramMemoryGuid
|
---|
51 | gEventMmDispatchGuid
|
---|
52 | gSmmBaseHobGuid
|
---|
53 | gMpInformation2HobGuid
|
---|
54 | gEfiAcpiVariableGuid
|
---|
55 | gMmAcpiS3EnableHobGuid
|
---|
56 | gMmCpuSyncConfigHobGuid
|
---|
57 | gMmProfileDataHobGuid
|
---|
58 | gMmUnblockRegionHobGuid
|
---|
59 |
|
---|
60 | [Ppis]
|
---|
61 | gEfiPeiMmControlPpiGuid
|
---|
62 | gEfiPeiMmCommunicationPpiGuid
|
---|
63 | gEfiEndOfPeiSignalPpiGuid
|
---|
64 | gMmCoreFvLocationPpiGuid
|
---|
65 |
|
---|
66 | [Protocols]
|
---|
67 | gEfiMmEndOfPeiProtocol
|
---|
68 |
|
---|
69 | [Pcd]
|
---|
70 | gEfiMdeModulePkgTokenSpaceGuid.PcdMmCommBufferPages
|
---|
71 | gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiS3Enable ## CONSUMES
|
---|
72 | gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmSyncMode ## CONSUMES
|
---|
73 | gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmApSyncTimeout ## CONSUMES
|
---|
74 | gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmApSyncTimeout2 ## CONSUMES
|
---|
75 | gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmProfileEnable ## CONSUMES
|
---|
76 | gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmProfileSize ## CONSUMES
|
---|
77 |
|
---|
78 | [Pcd.X64]
|
---|
79 | gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmRestrictedMemoryAccess ## CONSUMES
|
---|
80 |
|
---|
81 | [Depex]
|
---|
82 | gEfiPeiMmControlPpiGuid AND gEfiPeiMpServicesPpiGuid
|
---|
Note:
See
TracBrowser
for help on using the repository browser.