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 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
9 | #
|
---|
10 | ##
|
---|
11 |
|
---|
12 | [Defines]
|
---|
13 | INF_VERSION = 0x00010005
|
---|
14 | BASE_NAME = SmiHandlerProfileInfo
|
---|
15 | MODULE_UNI_FILE = SmiHandlerProfileInfo.uni
|
---|
16 | FILE_GUID = 611EA796-8DF8-4BB6-91FE-6540ED70DC66
|
---|
17 | MODULE_TYPE = UEFI_APPLICATION
|
---|
18 | VERSION_STRING = 1.0
|
---|
19 | ENTRY_POINT = SmiHandlerProfileInfoEntrypoint
|
---|
20 |
|
---|
21 | [Sources]
|
---|
22 | SmiHandlerProfileInfo.c
|
---|
23 |
|
---|
24 | [Packages]
|
---|
25 | MdePkg/MdePkg.dec
|
---|
26 | MdeModulePkg/MdeModulePkg.dec
|
---|
27 |
|
---|
28 | [LibraryClasses]
|
---|
29 | UefiApplicationEntryPoint
|
---|
30 | BaseLib
|
---|
31 | BaseMemoryLib
|
---|
32 | MemoryAllocationLib
|
---|
33 | DebugLib
|
---|
34 | UefiBootServicesTableLib
|
---|
35 | UefiRuntimeServicesTableLib
|
---|
36 | UefiLib
|
---|
37 | PrintLib
|
---|
38 | DevicePathLib
|
---|
39 | DxeServicesLib
|
---|
40 |
|
---|
41 | [Protocols]
|
---|
42 | gEfiSmmCommunicationProtocolGuid ## CONSUMES
|
---|
43 | gEfiSmmSwDispatch2ProtocolGuid ## SOMETIMES_CONSUMES
|
---|
44 | gEfiSmmSxDispatch2ProtocolGuid ## SOMETIMES_CONSUMES
|
---|
45 | gEfiSmmPowerButtonDispatch2ProtocolGuid ## SOMETIMES_CONSUMES
|
---|
46 | gEfiSmmStandbyButtonDispatch2ProtocolGuid ## SOMETIMES_CONSUMES
|
---|
47 | gEfiSmmPeriodicTimerDispatch2ProtocolGuid ## SOMETIMES_CONSUMES
|
---|
48 | gEfiSmmGpiDispatch2ProtocolGuid ## SOMETIMES_CONSUMES
|
---|
49 | gEfiSmmIoTrapDispatch2ProtocolGuid ## SOMETIMES_CONSUMES
|
---|
50 | gEfiSmmUsbDispatch2ProtocolGuid ## SOMETIMES_CONSUMES
|
---|
51 |
|
---|
52 | [Guids]
|
---|
53 | gEdkiiPiSmmCommunicationRegionTableGuid ## CONSUMES ## SystemTable
|
---|
54 | gSmiHandlerProfileGuid ## SOMETIMES_CONSUMES ## GUID # SmiHandlerRegister
|
---|
55 |
|
---|
56 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
57 | SmiHandlerProfileInfoExtra.uni
|
---|
58 |
|
---|