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# This program and the accompanying materials
10# are licensed and made available under the terms and conditions of the BSD License
11# which accompanies this distribution.  The full text of the license may be found at
12# http://opensource.org/licenses/bsd-license.php
13#
14# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
15# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
16#
17##
18
19[Defines]
20  INF_VERSION                    = 0x00010005
21  BASE_NAME                      = PiSmmCommunicationPei
22  MODULE_UNI_FILE                = PiSmmCommunicationPei.uni
23  FILE_GUID                      = 1C8B7F78-1699-40e6-AF33-9B995D16B043
24  MODULE_TYPE                    = PEIM
25  VERSION_STRING                 = 1.0
26  ENTRY_POINT                    = PiSmmCommunicationPeiEntryPoint
27
28#
29# The following information is for reference only and not required by the build tools.
30#
31#  VALID_ARCHITECTURES           = IA32 X64
32#
33
34[Sources]
35  PiSmmCommunicationPei.c
36  PiSmmCommunicationPrivate.h
37
38[Packages]
39  MdePkg/MdePkg.dec
40  MdeModulePkg/MdeModulePkg.dec
41
42[LibraryClasses]
43  PeimEntryPoint
44  PeiServicesTablePointerLib
45  PeiServicesLib
46  BaseLib
47  BaseMemoryLib
48  HobLib
49  DebugLib
50
51[Guids]
52  gEfiAcpiVariableGuid               ## CONSUMES ## HOB
53
54[Ppis]
55  ## PRODUCES
56  ## UNDEFINED # HOB # SMM Configuration Table
57  gEfiPeiSmmCommunicationPpiGuid
58  gPeiSmmAccessPpiGuid               ## CONSUMES
59  gPeiSmmControlPpiGuid              ## CONSUMES
60
61# [BootMode]
62#   S3_RESUME                        ## CONSUMES
63
64[Depex]
65  gPeiSmmAccessPpiGuid AND
66  gPeiSmmControlPpiGuid AND
67  gEfiPeiMasterBootModePpiGuid
68
69[UserExtensions.TianoCore."ExtraFiles"]
70  PiSmmCommunicationPeiExtra.uni
71