Last change
on this file since 108793 was 80721, checked in by vboxsync, 6 years ago |
Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.3 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # Instance of SMM IO check library.
|
---|
3 | #
|
---|
4 | # SMM IO check library library implementation. This library consumes GCD to collect all valid
|
---|
5 | # IO space defined by a platform.
|
---|
6 | # A platform may have its own SmmIoLib instance to exclude more IO space.
|
---|
7 | #
|
---|
8 | # Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
|
---|
9 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
10 | #
|
---|
11 | ##
|
---|
12 |
|
---|
13 | [Defines]
|
---|
14 | INF_VERSION = 0x00010005
|
---|
15 | BASE_NAME = SmmIoLib
|
---|
16 | MODULE_UNI_FILE = SmmIoLib.uni
|
---|
17 | FILE_GUID = F0F5A845-E3ED-4C6E-82D6-4ECE85DAC00F
|
---|
18 | MODULE_TYPE = DXE_SMM_DRIVER
|
---|
19 | VERSION_STRING = 1.0
|
---|
20 | LIBRARY_CLASS = SmmIoLib|DXE_SMM_DRIVER SMM_CORE
|
---|
21 | CONSTRUCTOR = SmmIoLibConstructor
|
---|
22 | DESTRUCTOR = SmmIoLibDestructor
|
---|
23 |
|
---|
24 | #
|
---|
25 | # The following information is for reference only and not required by the build tools.
|
---|
26 | #
|
---|
27 | # VALID_ARCHITECTURES = IA32 X64
|
---|
28 | #
|
---|
29 |
|
---|
30 | [Sources]
|
---|
31 | SmmIoLib.c
|
---|
32 |
|
---|
33 | [Packages]
|
---|
34 | MdePkg/MdePkg.dec
|
---|
35 |
|
---|
36 | [LibraryClasses]
|
---|
37 | SmmServicesTableLib
|
---|
38 | UefiBootServicesTableLib
|
---|
39 | DxeServicesTableLib
|
---|
40 | DebugLib
|
---|
41 | BaseMemoryLib
|
---|
42 | MemoryAllocationLib
|
---|
43 | HobLib
|
---|
44 |
|
---|
45 | [Protocols]
|
---|
46 | gEfiSmmReadyToLockProtocolGuid ## CONSUMES
|
---|
47 | gEfiSmmEndOfDxeProtocolGuid ## CONSUMES
|
---|
Note:
See
TracBrowser
for help on using the repository browser.