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