1 | ## @file
|
---|
2 | # Shell application to dump SMI handler profile information.
|
---|
3 | #
|
---|
4 | # Note that if the feature is not enabled by setting PcdSmiHandlerProfilePropertyMask,
|
---|
5 | # the application will not display SMI handler profile information.
|
---|
6 | #
|
---|
7 | # Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
|
---|
8 | # This program and the accompanying materials are licensed and made available under
|
---|
9 | # the terms and conditions of the BSD License that accompanies this distribution.
|
---|
10 | # The full text of the license may be found at
|
---|
11 | # http://opensource.org/licenses/bsd-license.php.
|
---|
12 | #
|
---|
13 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
14 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
15 | #
|
---|
16 | ##
|
---|
17 |
|
---|
18 | [Defines]
|
---|
19 | INF_VERSION = 0x00010005
|
---|
20 | BASE_NAME = SmiHandlerProfileInfo
|
---|
21 | MODULE_UNI_FILE = SmiHandlerProfileInfo.uni
|
---|
22 | FILE_GUID = 611EA796-8DF8-4BB6-91FE-6540ED70DC66
|
---|
23 | MODULE_TYPE = UEFI_APPLICATION
|
---|
24 | VERSION_STRING = 1.0
|
---|
25 | ENTRY_POINT = SmiHandlerProfileInfoEntrypoint
|
---|
26 |
|
---|
27 | [Sources]
|
---|
28 | SmiHandlerProfileInfo.c
|
---|
29 |
|
---|
30 | [Packages]
|
---|
31 | MdePkg/MdePkg.dec
|
---|
32 | MdeModulePkg/MdeModulePkg.dec
|
---|
33 |
|
---|
34 | [LibraryClasses]
|
---|
35 | UefiApplicationEntryPoint
|
---|
36 | BaseLib
|
---|
37 | BaseMemoryLib
|
---|
38 | MemoryAllocationLib
|
---|
39 | DebugLib
|
---|
40 | UefiBootServicesTableLib
|
---|
41 | UefiRuntimeServicesTableLib
|
---|
42 | UefiLib
|
---|
43 | PrintLib
|
---|
44 | DevicePathLib
|
---|
45 | PeCoffGetEntryPointLib
|
---|
46 | DxeServicesLib
|
---|
47 |
|
---|
48 | [Protocols]
|
---|
49 | gEfiSmmCommunicationProtocolGuid ## CONSUMES
|
---|
50 | gEfiSmmSwDispatch2ProtocolGuid ## SOMETIMES_CONSUMES
|
---|
51 | gEfiSmmSxDispatch2ProtocolGuid ## SOMETIMES_CONSUMES
|
---|
52 | gEfiSmmPowerButtonDispatch2ProtocolGuid ## SOMETIMES_CONSUMES
|
---|
53 | gEfiSmmStandbyButtonDispatch2ProtocolGuid ## SOMETIMES_CONSUMES
|
---|
54 | gEfiSmmPeriodicTimerDispatch2ProtocolGuid ## SOMETIMES_CONSUMES
|
---|
55 | gEfiSmmGpiDispatch2ProtocolGuid ## SOMETIMES_CONSUMES
|
---|
56 | gEfiSmmIoTrapDispatch2ProtocolGuid ## SOMETIMES_CONSUMES
|
---|
57 | gEfiSmmUsbDispatch2ProtocolGuid ## SOMETIMES_CONSUMES
|
---|
58 |
|
---|
59 | [Guids]
|
---|
60 | gEdkiiPiSmmCommunicationRegionTableGuid ## CONSUMES ## SystemTable
|
---|
61 | gSmiHandlerProfileGuid ## SOMETIMES_CONSUMES ## GUID # SmiHandlerRegister
|
---|
62 |
|
---|
63 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
64 | SmiHandlerProfileInfoExtra.uni
|
---|
65 |
|
---|