]> git.proxmox.com Git - mirror_edk2.git/blob - UefiCpuPkg/CpuMpPei/CpuMpPei.inf
UefiCpuPkg/CpuMpPei: support stack guard feature
[mirror_edk2.git] / UefiCpuPkg / CpuMpPei / CpuMpPei.inf
1 ## @file
2 # CPU driver installs CPU PI Multi-processor PPI.
3 #
4 # Copyright (c) 2015 - 2018, 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 = CpuMpPei
18 MODULE_UNI_FILE = CpuMpPei.uni
19 FILE_GUID = EDADEB9D-DDBA-48BD-9D22-C1C169C8C5C6
20 MODULE_TYPE = PEIM
21 VERSION_STRING = 1.0
22 ENTRY_POINT = CpuMpPeimInit
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 CpuMpPei.h
32 CpuMpPei.c
33 CpuBist.c
34 CpuPaging.c
35
36 [Packages]
37 MdePkg/MdePkg.dec
38 MdeModulePkg/MdeModulePkg.dec
39 UefiCpuPkg/UefiCpuPkg.dec
40
41 [LibraryClasses]
42 BaseLib
43 DebugLib
44 HobLib
45 LocalApicLib
46 PeimEntryPoint
47 PeiServicesLib
48 ReportStatusCodeLib
49 CpuExceptionHandlerLib
50 MpInitLib
51 BaseMemoryLib
52
53 [Ppis]
54 gEfiPeiMpServicesPpiGuid ## PRODUCES
55 gEfiSecPlatformInformationPpiGuid ## SOMETIMES_CONSUMES
56 ## SOMETIMES_CONSUMES
57 ## PRODUCES
58 ## UNDEFINED # HOB
59 gEfiSecPlatformInformation2PpiGuid
60 gEfiVectorHandoffInfoPpiGuid ## SOMETIMES_CONSUMES
61 gEfiPeiMemoryDiscoveredPpiGuid ## CONSUMES
62
63 [Pcd]
64 gEfiMdeModulePkgTokenSpaceGuid.PcdPteMemoryEncryptionAddressOrMask ## CONSUMES
65 gEfiMdeModulePkgTokenSpaceGuid.PcdCpuStackGuard ## CONSUMES
66 gUefiCpuPkgTokenSpaceGuid.PcdCpuStackSwitchExceptionList ## SOMETIMES_CONSUMES
67 gUefiCpuPkgTokenSpaceGuid.PcdCpuKnownGoodStackSize ## SOMETIMES_CONSUMES
68 gUefiCpuPkgTokenSpaceGuid.PcdCpuApStackSize ## SOMETIMES_CONSUMES
69
70 [Depex]
71 TRUE
72
73 [UserExtensions.TianoCore."ExtraFiles"]
74 CpuMpPeiExtra.uni
75