1## @file
2#  This module provide an SMM CIS compliant implementation of SMM IPL.
3#
4#  Copyright (c) 2009 - 2016, Intel Corporation. All rights reserved.<BR>
5#
6#  This program and the accompanying materials
7#  are licensed and made available under the terms and conditions of the BSD License
8#  which accompanies this distribution. The full text of the license may be found at
9#  http://opensource.org/licenses/bsd-license.php
10#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12#
13##
14
15[Defines]
16  INF_VERSION                    = 0x00010005
17  BASE_NAME                      = PiSmmIpl
18  MODULE_UNI_FILE                = PiSmmIpl.uni
19  FILE_GUID                      = 2FA2A6DA-11D5-4dc3-999A-749648B03C56
20  MODULE_TYPE                    = DXE_RUNTIME_DRIVER
21  VERSION_STRING                 = 1.0
22  PI_SPECIFICATION_VERSION       = 0x0001000A
23  ENTRY_POINT                    = SmmIplEntry
24
25#
26# The following information is for reference only and not required by the build tools.
27#
28#  VALID_ARCHITECTURES           = IA32 X64
29#
30
31[Sources]
32  PiSmmIpl.c
33  PiSmmCorePrivateData.h
34
35[Packages]
36  MdePkg/MdePkg.dec
37  MdeModulePkg/MdeModulePkg.dec
38
39[LibraryClasses]
40  UefiDriverEntryPoint
41  BaseLib
42  BaseMemoryLib
43  PeCoffLib
44  CacheMaintenanceLib
45  MemoryAllocationLib
46  DebugLib
47  UefiBootServicesTableLib
48  DxeServicesTableLib
49  UefiLib
50  UefiRuntimeLib
51  DxeServicesLib
52  PcdLib
53  ReportStatusCodeLib
54
55[Protocols]
56  gEfiSmmBase2ProtocolGuid                      ## PRODUCES
57  gEfiSmmCommunicationProtocolGuid              ## PRODUCES
58  gEfiSmmAccess2ProtocolGuid                    ## CONSUMES
59  ## NOTIFY
60  ## CONSUMES
61  gEfiSmmConfigurationProtocolGuid
62  gEfiSmmControl2ProtocolGuid                   ## CONSUMES
63  ## NOTIFY
64  ## SOMETIMES_CONSUMES
65  ## UNDEFINED # Used to do smm communcation
66  gEfiDxeSmmReadyToLockProtocolGuid
67  gEfiCpuArchProtocolGuid                       ## SOMETIMES_CONSUMES
68
69[Guids]
70  ## CONSUMES           ## Event
71  ## PRODUCES           ## UNDEFINED # Used to do smm communcation
72  gEfiEventDxeDispatchGuid
73  gEfiEventReadyToBootGuid                      ## CONSUMES             ## Event
74  ## SOMETIMES_CONSUMES ## Event
75  ## SOMETIMES_PRODUCES ## UNDEFINED # Used to do smm communcation
76  gEfiEventLegacyBootGuid
77  ## SOMETIMES_CONSUMES ## Event
78  ## SOMETIMES_PRODUCES ## UNDEFINED # Used to do smm communcation
79  gEfiEventExitBootServicesGuid
80  ## SOMETIMES_CONSUMES ## Event
81  ## SOMETIMES_PRODUCES ## UNDEFINED # Used to do smm communcation
82  gEfiEventReadyToBootGuid
83  gEfiEventVirtualAddressChangeGuid             ## CONSUMES             ## Event
84  gEfiEndOfDxeEventGroupGuid                    ## CONSUMES             ## Event
85  gLoadFixedAddressConfigurationTableGuid       ## SOMETIMES_CONSUMES   ## SystemTable
86
87[Pcd]
88  gEfiMdeModulePkgTokenSpaceGuid.PcdLoadFixAddressSmmCodePageNumber     ## SOMETIMES_CONSUMES
89  gEfiMdeModulePkgTokenSpaceGuid.PcdLoadModuleAtFixAddressEnable        ## CONSUMES
90
91[Depex]
92  gEfiSmmAccess2ProtocolGuid AND gEfiSmmControl2ProtocolGuid
93
94[UserExtensions.TianoCore."ExtraFiles"]
95  PiSmmIplExtra.uni
96