]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - UefiCpuPkg/CpuDxe/CpuDxe.inf
UefiCpuPkg: Replace BSD License with BSD+Patent License
[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 - 2018, Intel Corporation. All rights reserved.<BR>\r
5# Copyright (c) 2017, AMD Incorporated. All rights reserved.<BR>\r
6#\r
7# SPDX-License-Identifier: BSD-2-Clause-Patent\r
8#\r
9##\r
10\r
11[Defines]\r
12 INF_VERSION = 0x00010005\r
13 BASE_NAME = CpuDxe\r
14 MODULE_UNI_FILE = CpuDxe.uni\r
15 FILE_GUID = 1A1E4886-9517-440e-9FDE-3BE44CEE2136\r
16 MODULE_TYPE = DXE_DRIVER\r
17 VERSION_STRING = 1.0\r
18 ENTRY_POINT = InitializeCpu\r
19\r
20[Packages]\r
21 MdePkg/MdePkg.dec\r
22 MdeModulePkg/MdeModulePkg.dec\r
23 UefiCpuPkg/UefiCpuPkg.dec\r
24\r
25[LibraryClasses]\r
26 BaseLib\r
27 BaseMemoryLib\r
28 CpuLib\r
29 DebugLib\r
30 DxeServicesTableLib\r
31 MemoryAllocationLib\r
32 MtrrLib\r
33 UefiBootServicesTableLib\r
34 UefiDriverEntryPoint\r
35 LocalApicLib\r
36 UefiCpuLib\r
37 UefiLib\r
38 CpuExceptionHandlerLib\r
39 HobLib\r
40 ReportStatusCodeLib\r
41 MpInitLib\r
42 TimerLib\r
43 PeCoffGetEntryPointLib\r
44\r
45[Sources]\r
46 CpuDxe.c\r
47 CpuDxe.h\r
48 CpuGdt.c\r
49 CpuGdt.h\r
50 CpuMp.c\r
51 CpuMp.h\r
52 CpuPageTable.h\r
53 CpuPageTable.c\r
54\r
55[Sources.IA32]\r
56 Ia32/CpuAsm.nasm\r
57\r
58[Sources.X64]\r
59 X64/CpuAsm.nasm\r
60\r
61[Protocols]\r
62 gEfiCpuArchProtocolGuid ## PRODUCES\r
63 gEfiMpServiceProtocolGuid ## PRODUCES\r
64 gEfiSmmBase2ProtocolGuid ## SOMETIMES_CONSUMES\r
65\r
66[Guids]\r
67 gIdleLoopEventGuid ## CONSUMES ## Event\r
68 gEfiVectorHandoffTableGuid ## SOMETIMES_CONSUMES ## SystemTable\r
69\r
70[Ppis]\r
71 gEfiSecPlatformInformation2PpiGuid ## UNDEFINED # HOB\r
72 gEfiSecPlatformInformationPpiGuid ## UNDEFINED # HOB\r
73\r
74[Pcd]\r
75 gEfiMdeModulePkgTokenSpaceGuid.PcdPteMemoryEncryptionAddressOrMask ## CONSUMES\r
76 gEfiMdeModulePkgTokenSpaceGuid.PcdCpuStackGuard ## CONSUMES\r
77 gEfiMdeModulePkgTokenSpaceGuid.PcdHeapGuardPropertyMask ## CONSUMES\r
78 gEfiMdeModulePkgTokenSpaceGuid.PcdNullPointerDetectionPropertyMask ## CONSUMES\r
79 gUefiCpuPkgTokenSpaceGuid.PcdCpuStackSwitchExceptionList ## CONSUMES\r
80 gUefiCpuPkgTokenSpaceGuid.PcdCpuKnownGoodStackSize ## CONSUMES\r
81\r
82[Depex]\r
83 TRUE\r
84\r
85[UserExtensions.TianoCore."ExtraFiles"]\r
86 CpuDxeExtra.uni\r