Last change
on this file since 80728 was 80721, checked in by vboxsync, 5 years ago |
Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.6 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # PI SMM Communication PEIM which produces PEI SMM Communication PPI.
|
---|
3 | #
|
---|
4 | # This PEIM retrieves the SMM communication context and produces PEI SMM
|
---|
5 | # Communication PPIin the S3 boot mode.
|
---|
6 | #
|
---|
7 | # Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>
|
---|
8 | #
|
---|
9 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
10 | #
|
---|
11 | ##
|
---|
12 |
|
---|
13 | [Defines]
|
---|
14 | INF_VERSION = 0x00010005
|
---|
15 | BASE_NAME = PiSmmCommunicationPei
|
---|
16 | MODULE_UNI_FILE = PiSmmCommunicationPei.uni
|
---|
17 | FILE_GUID = 1C8B7F78-1699-40e6-AF33-9B995D16B043
|
---|
18 | MODULE_TYPE = PEIM
|
---|
19 | VERSION_STRING = 1.0
|
---|
20 | ENTRY_POINT = PiSmmCommunicationPeiEntryPoint
|
---|
21 |
|
---|
22 | #
|
---|
23 | # The following information is for reference only and not required by the build tools.
|
---|
24 | #
|
---|
25 | # VALID_ARCHITECTURES = IA32 X64
|
---|
26 | #
|
---|
27 |
|
---|
28 | [Sources]
|
---|
29 | PiSmmCommunicationPei.c
|
---|
30 | PiSmmCommunicationPrivate.h
|
---|
31 |
|
---|
32 | [Packages]
|
---|
33 | MdePkg/MdePkg.dec
|
---|
34 | MdeModulePkg/MdeModulePkg.dec
|
---|
35 |
|
---|
36 | [LibraryClasses]
|
---|
37 | PeimEntryPoint
|
---|
38 | PeiServicesTablePointerLib
|
---|
39 | PeiServicesLib
|
---|
40 | BaseLib
|
---|
41 | BaseMemoryLib
|
---|
42 | HobLib
|
---|
43 | DebugLib
|
---|
44 |
|
---|
45 | [Guids]
|
---|
46 | gEfiAcpiVariableGuid ## CONSUMES ## HOB
|
---|
47 |
|
---|
48 | [Ppis]
|
---|
49 | ## PRODUCES
|
---|
50 | ## UNDEFINED # HOB # SMM Configuration Table
|
---|
51 | gEfiPeiSmmCommunicationPpiGuid
|
---|
52 | gPeiSmmAccessPpiGuid ## CONSUMES
|
---|
53 | gPeiSmmControlPpiGuid ## CONSUMES
|
---|
54 |
|
---|
55 | # [BootMode]
|
---|
56 | # S3_RESUME ## CONSUMES
|
---|
57 |
|
---|
58 | [Depex]
|
---|
59 | gPeiSmmAccessPpiGuid AND
|
---|
60 | gPeiSmmControlPpiGuid AND
|
---|
61 | gEfiPeiMasterBootModePpiGuid
|
---|
62 |
|
---|
63 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
64 | PiSmmCommunicationPeiExtra.uni
|
---|
Note:
See
TracBrowser
for help on using the repository browser.