]> git.proxmox.com Git - mirror_edk2.git/blobdiff - UefiCpuPkg/CpuDxe/CpuDxe.inf
UefiCpuPkg: CpuDxe: Use PCD for AP detection timeout
[mirror_edk2.git] / UefiCpuPkg / CpuDxe / CpuDxe.inf
index caf33da75d12682230594c4ca811944ddac02a0d..9db5303ae94af6a2f712b1f7dbbf000c2db00d68 100644 (file)
@@ -1,9 +1,8 @@
 ## @file\r
+#  Simple CPU driver installs CPU Architecture Protocol.\r
 #\r
-#    Component description file for simple CPU driver\r
-#\r
-#  Copyright (c) 2008 - 2010, Intel Corporation. <BR>\r
-#  All rights reserved. This program and the accompanying materials\r
+#  Copyright (c) 2008 - 2015, Intel Corporation. All rights reserved.<BR>\r
+#  This program and the accompanying materials\r
 #  are licensed and made available under the terms and conditions of the BSD License\r
 #  which accompanies this distribution.  The full text of the license may be found at\r
 #  http://opensource.org/licenses/bsd-license.php\r
@@ -16,6 +15,7 @@
 [Defines]\r
   INF_VERSION                    = 0x00010005\r
   BASE_NAME                      = CpuDxe\r
+  MODULE_UNI_FILE                = CpuDxe.uni\r
   FILE_GUID                      = 1A1E4886-9517-440e-9FDE-3BE44CEE2136\r
   MODULE_TYPE                    = DXE_DRIVER\r
   VERSION_STRING                 = 1.0\r
@@ -24,6 +24,7 @@
 \r
 [Packages]\r
   MdePkg/MdePkg.dec\r
+  MdeModulePkg/MdeModulePkg.dec\r
   UefiCpuPkg/UefiCpuPkg.dec\r
 \r
 [LibraryClasses]\r
   MtrrLib\r
   UefiBootServicesTableLib\r
   UefiDriverEntryPoint\r
+  LocalApicLib\r
+  UefiCpuLib\r
+  UefiLib\r
+  CpuExceptionHandlerLib\r
+  TimerLib\r
+  SynchronizationLib\r
+  HobLib\r
+  ReportStatusCodeLib\r
 \r
 [Sources]\r
+  ApStartup.c\r
   CpuDxe.c\r
   CpuDxe.h\r
   CpuGdt.c\r
-\r
-  Ia32/IvtAsm.asm | MSFT\r
-  Ia32/IvtAsm.asm | INTEL\r
-  Ia32/IvtAsm.S   | GCC\r
+  CpuGdt.h\r
+  CpuMp.c\r
+  CpuMp.h\r
 \r
 [Sources.IA32]\r
   Ia32/CpuAsm.asm | MSFT\r
   Ia32/CpuAsm.asm | INTEL\r
   Ia32/CpuAsm.S   | GCC\r
+  Ia32/MpAsm.asm  | MSFT\r
+  Ia32/MpAsm.asm  | INTEL\r
+  Ia32/MpAsm.nasm | GCC\r
 \r
 [Sources.X64]\r
   X64/CpuAsm.asm | MSFT\r
   X64/CpuAsm.asm | INTEL\r
   X64/CpuAsm.S   | GCC\r
+  X64/MpAsm.asm  | MSFT\r
+  X64/MpAsm.asm  | INTEL\r
+  X64/MpAsm.nasm | GCC\r
 \r
 [Protocols]\r
-  gEfiCpuArchProtocolGuid\r
+  gEfiCpuArchProtocolGuid                       ## PRODUCES\r
+  gEfiMpServiceProtocolGuid                     ## SOMETIMES_PRODUCES\r
+\r
+[Guids]\r
+  gIdleLoopEventGuid                            ## CONSUMES           ## Event\r
+  gEfiVectorHandoffTableGuid                    ## SOMETIMES_CONSUMES ## SystemTable\r
+\r
+[Ppis]\r
+  gEfiSecPlatformInformation2PpiGuid            ## UNDEFINED # HOB\r
+  gEfiSecPlatformInformationPpiGuid             ## UNDEFINED # HOB\r
+\r
+[Pcd]\r
+  gUefiCpuPkgTokenSpaceGuid.PcdCpuMaxLogicalProcessorNumber    ## CONSUMES\r
+  gUefiCpuPkgTokenSpaceGuid.PcdCpuApStackSize                  ## CONSUMES\r
+  gUefiCpuPkgTokenSpaceGuid.PcdCpuApInitTimeOutInMicroSeconds  ## CONSUMES\r
 \r
 [Depex]\r
   TRUE\r
 \r
+[UserExtensions.TianoCore."ExtraFiles"]\r
+  CpuDxeExtra.uni\r