1## @file
2#  This module provide an SMM CIS compliant implementation of SMM IPL.
3#
4#  Copyright (c) 2009 - 2015, 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
54[Protocols]
55  gEfiSmmBase2ProtocolGuid                      ## PRODUCES
56  gEfiSmmCommunicationProtocolGuid              ## PRODUCES
57  gEfiSmmAccess2ProtocolGuid                    ## CONSUMES
58  ## NOTIFY
59  ## CONSUMES
60  gEfiSmmConfigurationProtocolGuid
61  gEfiSmmControl2ProtocolGuid                   ## CONSUMES
62  ## NOTIFY
63  ## SOMETIMES_CONSUMES
64  ## UNDEFINED # Used to do smm communcation
65  gEfiDxeSmmReadyToLockProtocolGuid
66  gEfiCpuArchProtocolGuid                       ## SOMETIMES_CONSUMES
67
68[Guids]
69  ## CONSUMES           ## Event
70  ## PRODUCES           ## UNDEFINED # Used to do smm communcation
71  gEfiEventDxeDispatchGuid
72  gEfiEventReadyToBootGuid                      ## CONSUMES             ## Event
73  ## SOMETIMES_CONSUMES ## Event
74  ## SOMETIMES_PRODUCES ## UNDEFINED # Used to do smm communcation
75  gEfiEventLegacyBootGuid
76  ## SOMETIMES_CONSUMES ## Event
77  ## SOMETIMES_PRODUCES ## UNDEFINED # Used to do smm communcation
78  gEfiEventExitBootServicesGuid
79  ## SOMETIMES_CONSUMES ## Event
80  ## SOMETIMES_PRODUCES ## UNDEFINED # Used to do smm communcation
81  gEfiEventReadyToBootGuid
82  gEfiEventVirtualAddressChangeGuid             ## CONSUMES             ## Event
83  gEfiEndOfDxeEventGroupGuid                    ## CONSUMES             ## Event
84  gLoadFixedAddressConfigurationTableGuid       ## SOMETIMES_CONSUMES   ## SystemTable
85
86[Pcd]
87  gEfiMdeModulePkgTokenSpaceGuid.PcdLoadFixAddressSmmCodePageNumber     ## SOMETIMES_CONSUMES
88  gEfiMdeModulePkgTokenSpaceGuid.PcdLoadModuleAtFixAddressEnable        ## CONSUMES
89
90[Depex]
91  gEfiSmmAccess2ProtocolGuid AND gEfiSmmControl2ProtocolGuid
92
93[UserExtensions.TianoCore."ExtraFiles"]
94  PiSmmIplExtra.uni
95