]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - UefiCpuPkg/CpuDxe/CpuDxe.inf
UefiCpuPkg/CpuDxe: Enable protection for newly added page table
[mirror_edk2.git] / UefiCpuPkg / CpuDxe / CpuDxe.inf
... / ...
CommitLineData
1## @file\r
2# CPU driver installs CPU Architecture Protocol and CPU MP protocol.\r
3#\r
4# Copyright (c) 2008 - 2017, Intel Corporation. All rights reserved.<BR>\r
5# Copyright (c) 2017, AMD Incorporated. All rights reserved.<BR>\r
6#\r
7# This program and the accompanying materials\r
8# are licensed and made available under the terms and conditions of the BSD License\r
9# which accompanies this distribution. The full text of the license may be found at\r
10# http://opensource.org/licenses/bsd-license.php\r
11#\r
12# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
13# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
14#\r
15##\r
16\r
17[Defines]\r
18 INF_VERSION = 0x00010005\r
19 BASE_NAME = CpuDxe\r
20 MODULE_UNI_FILE = CpuDxe.uni\r
21 FILE_GUID = 1A1E4886-9517-440e-9FDE-3BE44CEE2136\r
22 MODULE_TYPE = DXE_DRIVER\r
23 VERSION_STRING = 1.0\r
24 ENTRY_POINT = InitializeCpu\r
25\r
26[Packages]\r
27 MdePkg/MdePkg.dec\r
28 MdeModulePkg/MdeModulePkg.dec\r
29 UefiCpuPkg/UefiCpuPkg.dec\r
30\r
31[LibraryClasses]\r
32 BaseLib\r
33 BaseMemoryLib\r
34 CpuLib\r
35 DebugLib\r
36 DxeServicesTableLib\r
37 MemoryAllocationLib\r
38 MtrrLib\r
39 UefiBootServicesTableLib\r
40 UefiDriverEntryPoint\r
41 LocalApicLib\r
42 UefiCpuLib\r
43 UefiLib\r
44 CpuExceptionHandlerLib\r
45 HobLib\r
46 ReportStatusCodeLib\r
47 MpInitLib\r
48 TimerLib\r
49\r
50[Sources]\r
51 CpuDxe.c\r
52 CpuDxe.h\r
53 CpuGdt.c\r
54 CpuGdt.h\r
55 CpuMp.c\r
56 CpuMp.h\r
57 CpuPageTable.h\r
58 CpuPageTable.c\r
59\r
60[Sources.IA32]\r
61 Ia32/CpuAsm.asm\r
62 Ia32/CpuAsm.nasm\r
63 Ia32/CpuAsm.S\r
64\r
65[Sources.X64]\r
66 X64/CpuAsm.asm\r
67 X64/CpuAsm.nasm\r
68 X64/CpuAsm.S\r
69\r
70[Protocols]\r
71 gEfiCpuArchProtocolGuid ## PRODUCES\r
72 gEfiMpServiceProtocolGuid ## PRODUCES\r
73\r
74[Guids]\r
75 gIdleLoopEventGuid ## CONSUMES ## Event\r
76 gEfiVectorHandoffTableGuid ## SOMETIMES_CONSUMES ## SystemTable\r
77\r
78[Ppis]\r
79 gEfiSecPlatformInformation2PpiGuid ## UNDEFINED # HOB\r
80 gEfiSecPlatformInformationPpiGuid ## UNDEFINED # HOB\r
81\r
82[Pcd]\r
83 gEfiMdeModulePkgTokenSpaceGuid.PcdPteMemoryEncryptionAddressOrMask ## CONSUMES\r
84 gEfiMdeModulePkgTokenSpaceGuid.PcdCpuStackGuard ## CONSUMES\r
85 gUefiCpuPkgTokenSpaceGuid.PcdCpuStackSwitchExceptionList ## CONSUMES\r
86 gUefiCpuPkgTokenSpaceGuid.PcdCpuKnownGoodStackSize ## CONSUMES\r
87\r
88[Depex]\r
89 TRUE\r
90\r
91[UserExtensions.TianoCore."ExtraFiles"]\r
92 CpuDxeExtra.uni\r