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 | # This program and the accompanying materials
|
---|
8 | # are licensed and made available under the terms and conditions of the BSD License
|
---|
9 | # which accompanies this distribution. The full text of the license may be found at
|
---|
10 | # http://opensource.org/licenses/bsd-license.php
|
---|
11 | #
|
---|
12 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
13 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
14 | #
|
---|
15 | ##
|
---|
16 |
|
---|
17 | [Defines]
|
---|
18 | INF_VERSION = 0x00010005
|
---|
19 | BASE_NAME = PiSmmCommunicationSmm
|
---|
20 | MODULE_UNI_FILE = PiSmmCommunicationSmm.uni
|
---|
21 | FILE_GUID = E21F35A8-42FF-4050-82D6-93F7CDFA7073
|
---|
22 | MODULE_TYPE = DXE_SMM_DRIVER
|
---|
23 | VERSION_STRING = 1.0
|
---|
24 | PI_SPECIFICATION_VERSION = 0x0001000A
|
---|
25 | ENTRY_POINT = PiSmmCommunicationSmmEntryPoint
|
---|
26 |
|
---|
27 | #
|
---|
28 | # The following information is for reference only and not required by the build tools.
|
---|
29 | #
|
---|
30 | # VALID_ARCHITECTURES = IA32 X64
|
---|
31 | #
|
---|
32 |
|
---|
33 | [Sources]
|
---|
34 | PiSmmCommunicationSmm.c
|
---|
35 | PiSmmCommunicationPrivate.h
|
---|
36 |
|
---|
37 | [Packages]
|
---|
38 | MdePkg/MdePkg.dec
|
---|
39 | MdeModulePkg/MdeModulePkg.dec
|
---|
40 |
|
---|
41 | [LibraryClasses]
|
---|
42 | UefiDriverEntryPoint
|
---|
43 | UefiBootServicesTableLib
|
---|
44 | UefiRuntimeServicesTableLib
|
---|
45 | SmmServicesTableLib
|
---|
46 | BaseLib
|
---|
47 | BaseMemoryLib
|
---|
48 | DebugLib
|
---|
49 | SmmMemLib
|
---|
50 |
|
---|
51 | [Ppis]
|
---|
52 | gEfiPeiSmmCommunicationPpiGuid ## UNDEFINED # SMM Configuration Table
|
---|
53 |
|
---|
54 | [Protocols]
|
---|
55 | gEfiSmmSwDispatch2ProtocolGuid ## CONSUMES
|
---|
56 |
|
---|
57 | [Depex]
|
---|
58 | gEfiSmmSwDispatch2ProtocolGuid
|
---|
59 |
|
---|
60 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
61 | PiSmmCommunicationSmmExtra.uni
|
---|