1## @file 2# Component description file for Cpu module. 3# 4# This CPU module abstracts the interrupt subsystem of a platform and the CPU-specific setjump-long pair. 5# 6# Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR> 7# 8# This program and the accompanying materials 9# are licensed and made available under the terms and conditions of the BSD License 10# which accompanies this distribution. The full text of the license may be found at 11# http://opensource.org/licenses/bsd-license.php 12# 13# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 14# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 15# 16## 17 18[Defines] 19 INF_VERSION = 0x00010005 20 BASE_NAME = Cpu 21 FILE_GUID = f3794b60-8985-11db-8e53-0040d02b1835 22 MODULE_TYPE = DXE_DRIVER 23 VERSION_STRING = 1.0 24 25 ENTRY_POINT = InitializeCpu 26 27# 28# The following information is for reference only and not required by the build tools. 29# 30# VALID_ARCHITECTURES = IA32 X64 IPF EBC 31# 32 33[Sources] 34 CpuIo.c 35 Cpu.c 36 CpuDriver.h 37 MpService.c 38 39 40[Packages] 41 MdePkg/MdePkg.dec 42 MdeModulePkg/MdeModulePkg.dec 43 EmulatorPkg/EmulatorPkg.dec 44 45 46[LibraryClasses] 47 UefiBootServicesTableLib 48 MemoryAllocationLib 49 BaseMemoryLib 50 UefiDriverEntryPoint 51 UefiLib 52 HiiLib 53 DebugLib 54 BaseLib 55 EmuThunkLib 56 PcdLib 57 58[Protocols] 59 gEmuIoThunkProtocolGuid # PROTOCOL_NOTIFY SOMETIMES_CONSUMED 60 gEfiSmbiosProtocolGuid # PROTOCOL SOMETIMES_CONSUMED 61 gEfiCpuIo2ProtocolGuid # PROTOCOL ALWAYS_PRODUCED 62 gEfiCpuArchProtocolGuid # PROTOCOL ALWAYS_PRODUCED 63 gEmuThreadThunkProtocolGuid 64 gEfiMpServiceProtocolGuid 65 66[Guids] 67 gIdleLoopEventGuid ## CONSUMES ## GUID 68 69[Pcd] 70 gEmulatorPkgTokenSpaceGuid.PcdEmuMpServicesPollingInterval 71 72[Depex] 73 gEfiSmbiosProtocolGuid 74