2010-02-24 01:21:16 +01:00
|
|
|
## @file
|
2009-12-15 04:00:49 +01:00
|
|
|
# Produces PI MP Services Protocol on top of Framework MP Services Protocol.
|
|
|
|
#
|
|
|
|
# Intel's Framework MP Services Protocol is replaced by EFI_MP_SERVICES_PROTOCOL in PI 1.1.
|
|
|
|
# This module produces PI MP Services Protocol on top of Framework MP Services Protocol.
|
|
|
|
#
|
2010-04-24 11:48:54 +02:00
|
|
|
# Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR>
|
2009-12-15 04:00:49 +01:00
|
|
|
#
|
2010-04-24 11:48:54 +02:00
|
|
|
# This program and the accompanying materials
|
2009-12-15 04:00:49 +01:00
|
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
# which accompanies this distribution. The full text of the license may be found at
|
|
|
|
# http://opensource.org/licenses/bsd-license.php
|
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
#
|
|
|
|
#
|
2010-02-24 01:21:16 +01:00
|
|
|
##
|
2009-12-15 04:00:49 +01:00
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = MpServicesOnFrameworkMpServicesThunk
|
|
|
|
FILE_GUID = 51739E2A-A022-4D73-ADB9-91F0C9BC7142
|
|
|
|
MODULE_TYPE = DXE_DRIVER
|
|
|
|
ENTRY_POINT = InitializeMpServicesProtocol
|
|
|
|
|
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
|
|
|
# VALID_ARCHITECTURES = IA32 X64
|
|
|
|
#
|
|
|
|
|
2010-02-24 01:21:16 +01:00
|
|
|
[Sources]
|
2009-12-15 04:00:49 +01:00
|
|
|
MpServicesOnFrameworkMpServicesThunk.c
|
|
|
|
MpServicesOnFrameworkMpServicesThunk.h
|
|
|
|
|
|
|
|
[Sources.X64]
|
|
|
|
X64/MpFuncs.asm
|
|
|
|
X64/MpFuncs.S
|
|
|
|
|
|
|
|
[Sources.IA32]
|
|
|
|
IA32/MpFuncs.asm
|
|
|
|
IA32/MpFuncs.S
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
|
|
IntelFrameworkPkg/IntelFrameworkPkg.dec
|
2010-08-23 08:53:10 +02:00
|
|
|
UefiCpuPkg/UefiCpuPkg.dec
|
2009-12-15 04:00:49 +01:00
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
TimerLib
|
|
|
|
IoLib
|
|
|
|
UefiBootServicesTableLib
|
|
|
|
DxeServicesTableLib
|
|
|
|
MemoryAllocationLib
|
|
|
|
UefiDriverEntryPoint
|
|
|
|
BaseMemoryLib
|
|
|
|
UefiLib
|
|
|
|
DebugLib
|
|
|
|
BaseLib
|
|
|
|
SynchronizationLib
|
2010-07-27 09:40:20 +02:00
|
|
|
DebugAgentLib
|
2010-08-23 08:53:10 +02:00
|
|
|
LocalApicLib
|
2009-12-15 04:00:49 +01:00
|
|
|
|
|
|
|
[Protocols]
|
|
|
|
gEfiMpServiceProtocolGuid ## PRODUCES
|
|
|
|
gFrameworkEfiMpServiceProtocolGuid ## CONSUMES
|
|
|
|
gEfiGenericMemTestProtocolGuid ## SOMETIMES_CONSUMES
|
|
|
|
|
|
|
|
[Depex]
|
|
|
|
gFrameworkEfiMpServiceProtocolGuid
|