1 | ## @file
|
---|
2 | # CPU Features DXE driver.
|
---|
3 | #
|
---|
4 | # Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
|
---|
5 | # This program and the accompanying materials
|
---|
6 | # are licensed and made available under the terms and conditions of the BSD License
|
---|
7 | # which accompanies this distribution. The full text of the license may be found at
|
---|
8 | # http://opensource.org/licenses/bsd-license.php
|
---|
9 | #
|
---|
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 = CpuFeaturesDxe
|
---|
18 | MODULE_UNI_FILE = CpuFeaturesDxe.uni
|
---|
19 | FILE_GUID = 63EB1B62-10C9-4693-88AC-AE0999EA87F8
|
---|
20 | MODULE_TYPE = DXE_DRIVER
|
---|
21 | VERSION_STRING = 1.0
|
---|
22 |
|
---|
23 | ENTRY_POINT = CpuFeaturesDxeInitialize
|
---|
24 |
|
---|
25 | [Packages]
|
---|
26 | MdePkg/MdePkg.dec
|
---|
27 | UefiCpuPkg/UefiCpuPkg.dec
|
---|
28 |
|
---|
29 | [LibraryClasses]
|
---|
30 | BaseLib
|
---|
31 | DebugLib
|
---|
32 | UefiLib
|
---|
33 | UefiDriverEntryPoint
|
---|
34 | UefiBootServicesTableLib
|
---|
35 | RegisterCpuFeaturesLib
|
---|
36 | HobLib
|
---|
37 |
|
---|
38 | [Sources]
|
---|
39 | CpuFeaturesDxe.c
|
---|
40 |
|
---|
41 | [Guids]
|
---|
42 | gEdkiiCpuFeaturesInitDoneGuid ## PRODUCES ## UNDEFINED # protocol GUID installed
|
---|
43 |
|
---|
44 | [Protocols]
|
---|
45 | gEfiSmmConfigurationProtocolGuid ## NOTIFY
|
---|
46 |
|
---|
47 | [Pcd]
|
---|
48 | gUefiCpuPkgTokenSpaceGuid.PcdCpuFeaturesInitAfterSmmRelocation ## CONSUMES
|
---|
49 |
|
---|
50 | [Depex]
|
---|
51 | TRUE
|
---|
52 |
|
---|
53 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
54 | CpuFeaturesDxeExtra.uni
|
---|