1 | ## @file
|
---|
2 | # PI SMM Communication SMM driver that saves SMM communication context
|
---|
3 | # for use by SMM Communication PEIM in the S3 boot mode.
|
---|
4 | #
|
---|
5 | # Copyright (c) 2010 - 2017, Intel Corporation. All rights reserved.<BR>
|
---|
6 | #
|
---|
7 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
8 | #
|
---|
9 | ##
|
---|
10 |
|
---|
11 | [Defines]
|
---|
12 | INF_VERSION = 0x00010005
|
---|
13 | BASE_NAME = PiSmmCommunicationSmm
|
---|
14 | MODULE_UNI_FILE = PiSmmCommunicationSmm.uni
|
---|
15 | FILE_GUID = E21F35A8-42FF-4050-82D6-93F7CDFA7073
|
---|
16 | MODULE_TYPE = DXE_SMM_DRIVER
|
---|
17 | VERSION_STRING = 1.0
|
---|
18 | PI_SPECIFICATION_VERSION = 0x0001000A
|
---|
19 | ENTRY_POINT = PiSmmCommunicationSmmEntryPoint
|
---|
20 |
|
---|
21 | #
|
---|
22 | # The following information is for reference only and not required by the build tools.
|
---|
23 | #
|
---|
24 | # VALID_ARCHITECTURES = IA32 X64
|
---|
25 | #
|
---|
26 |
|
---|
27 | [Sources]
|
---|
28 | PiSmmCommunicationSmm.c
|
---|
29 | PiSmmCommunicationPrivate.h
|
---|
30 |
|
---|
31 | [Packages]
|
---|
32 | MdePkg/MdePkg.dec
|
---|
33 | MdeModulePkg/MdeModulePkg.dec
|
---|
34 |
|
---|
35 | [LibraryClasses]
|
---|
36 | UefiDriverEntryPoint
|
---|
37 | UefiBootServicesTableLib
|
---|
38 | UefiRuntimeServicesTableLib
|
---|
39 | SmmServicesTableLib
|
---|
40 | BaseLib
|
---|
41 | BaseMemoryLib
|
---|
42 | DebugLib
|
---|
43 | SmmMemLib
|
---|
44 |
|
---|
45 | [Ppis]
|
---|
46 | gEfiPeiSmmCommunicationPpiGuid ## UNDEFINED # SMM Configuration Table
|
---|
47 |
|
---|
48 | [Protocols]
|
---|
49 | gEfiSmmSwDispatch2ProtocolGuid ## CONSUMES
|
---|
50 |
|
---|
51 | [Depex]
|
---|
52 | gEfiSmmSwDispatch2ProtocolGuid
|
---|
53 |
|
---|
54 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
55 | PiSmmCommunicationSmmExtra.uni
|
---|