2010-02-24 01:21:16 +01:00
|
|
|
## @file
|
2008-12-23 17:20:43 +01:00
|
|
|
# Module that produces EBC Interprete and EBC Debug Support protocols.
|
2008-05-21 06:03:40 +02:00
|
|
|
#
|
2008-12-23 17:20:43 +01:00
|
|
|
# This module implements EFI Byte Code (EBC) Virtual Machine that can provide
|
2009-04-02 04:27:07 +02:00
|
|
|
# platform and processor-independent mechanisms for loading and executing EFI
|
2008-12-23 17:20:43 +01:00
|
|
|
# device drivers.
|
|
|
|
#
|
2010-04-24 11:33:45 +02:00
|
|
|
# Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
|
|
|
# This program and the accompanying materials
|
2007-06-27 16:52:40 +02:00
|
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
2008-05-21 06:03:40 +02:00
|
|
|
# which accompanies this distribution. The full text of the license may be found at
|
2007-06-27 16:52:40 +02:00
|
|
|
# http://opensource.org/licenses/bsd-license.php
|
2008-05-21 06:03:40 +02:00
|
|
|
#
|
2007-06-27 16:52:40 +02:00
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2008-05-21 06:03:40 +02:00
|
|
|
#
|
2010-02-24 01:21:16 +01:00
|
|
|
##
|
2007-06-27 16:52:40 +02:00
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
2007-07-18 16:32:48 +02:00
|
|
|
BASE_NAME = EbcDxe
|
|
|
|
FILE_GUID = 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7
|
2007-06-27 16:52:40 +02:00
|
|
|
MODULE_TYPE = DXE_DRIVER
|
|
|
|
VERSION_STRING = 1.0
|
2007-07-18 16:32:48 +02:00
|
|
|
ENTRY_POINT = InitializeEbcDriver
|
2007-06-27 16:52:40 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
2007-07-18 16:32:48 +02:00
|
|
|
# VALID_ARCHITECTURES = IA32 X64 IPF
|
2007-06-27 16:52:40 +02:00
|
|
|
#
|
|
|
|
|
2010-02-24 01:21:16 +01:00
|
|
|
[Sources]
|
2007-07-18 16:32:48 +02:00
|
|
|
EbcExecute.h
|
|
|
|
EbcExecute.c
|
|
|
|
EbcInt.h
|
|
|
|
EbcInt.c
|
|
|
|
|
|
|
|
[Sources.Ia32]
|
|
|
|
Ia32/EbcSupport.c
|
|
|
|
Ia32/EbcLowLevel.S
|
|
|
|
Ia32/EbcLowLevel.asm
|
|
|
|
|
|
|
|
[Sources.X64]
|
2008-05-21 06:08:35 +02:00
|
|
|
X64/EbcSupport.c
|
|
|
|
X64/EbcLowLevel.S
|
|
|
|
X64/EbcLowLevel.asm
|
2007-07-18 16:32:48 +02:00
|
|
|
|
|
|
|
[Sources.IPF]
|
|
|
|
Ipf/EbcSupport.h
|
|
|
|
Ipf/EbcSupport.c
|
|
|
|
Ipf/EbcLowLevel.s
|
2007-06-27 16:52:40 +02:00
|
|
|
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
|
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
MemoryAllocationLib
|
|
|
|
UefiBootServicesTableLib
|
2007-07-18 16:32:48 +02:00
|
|
|
BaseMemoryLib
|
2007-06-27 16:52:40 +02:00
|
|
|
UefiDriverEntryPoint
|
|
|
|
DebugLib
|
2007-07-18 16:32:48 +02:00
|
|
|
BaseLib
|
2007-06-27 16:52:40 +02:00
|
|
|
|
|
|
|
|
|
|
|
[Protocols]
|
2009-01-20 04:07:20 +01:00
|
|
|
gEfiDebugSupportProtocolGuid ## PRODUCES
|
|
|
|
gEfiEbcProtocolGuid ## PRODUCES
|
2007-06-27 16:52:40 +02:00
|
|
|
|
2007-06-28 16:50:15 +02:00
|
|
|
[Depex]
|
2007-07-18 16:32:48 +02:00
|
|
|
TRUE
|
2009-01-20 04:07:20 +01:00
|
|
|
|
|
|
|
# [Event]
|
|
|
|
# ##
|
|
|
|
# # Periodic timer event to support EFI debug support protocol for EBC image.
|
|
|
|
# #
|
|
|
|
# EVENT_TYPE_PERIODIC_TIMER ## PRODUCES
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|