]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/DebugPortDxe/DebugPortDxe.inf
7e950c559abb68cbd098196838239b4093149c95
[mirror_edk2.git] / MdeModulePkg / Universal / DebugPortDxe / DebugPortDxe.inf
1 ## @file
2 # This driver produces Debug Port protocol to be used by debug agent to communicate with
3 # the remote debug host.
4 #
5 # This driver binds exclusively to a standard UART serial port on the controller handle,
6 # and initializes serial Io interface, publishs Debug Port and Device Path Protocol.
7 # Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
8 #
9 # This program and the accompanying materials
10 # are licensed and made available under the terms and conditions of the BSD License
11 # which accompanies this distribution. The full text of the license may be found at
12 # http://opensource.org/licenses/bsd-license.php
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
19 [Defines]
20 INF_VERSION = 0x00010005
21 BASE_NAME = DebugPortDxe
22 FILE_GUID = 73E9457A-CEA1-4917-9A9C-9F1F0F0FD322
23 MODULE_TYPE = UEFI_DRIVER
24 VERSION_STRING = 1.0
25 ENTRY_POINT = InitializeDebugPortDriver
26 UNLOAD_IMAGE = ImageUnloadHandler
27
28 #
29 # The following information is for reference only and not required by the build tools.
30 #
31 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
32 #
33 # DRIVER_BINDING = gDebugPortDriverBinding
34 # COMPONENT_NAME = gDebugPortComponentName
35 # COMPONENT_NAME2 = gDebugPortComponentName2
36 # Variable Guid C Name: gEfiDebugPortProtocolGuid Variable Name: L"DEBUGPORT"
37 #
38 #
39
40 [Sources]
41 ComponentName.c
42 DebugPort.c
43 DebugPort.h
44
45
46 [Packages]
47 MdePkg/MdePkg.dec
48
49
50 [LibraryClasses]
51 DevicePathLib
52 UefiRuntimeServicesTableLib
53 UefiBootServicesTableLib
54 MemoryAllocationLib
55 BaseMemoryLib
56 UefiLib
57 UefiDriverEntryPoint
58 DebugLib
59
60 [Guids]
61 gEfiDebugPortVariableGuid ## SOMETIMES_CONSUMES ## Variable:L"DEBUGPORT"
62 gEfiDebugPortDevicePathGuid ## SOMETIMES_CONSUMES ## GUID
63
64 [Protocols]
65 gEfiSerialIoProtocolGuid ## TO_START
66 gEfiDevicePathProtocolGuid ## BY_START
67 gEfiDebugPortProtocolGuid ## BY_START
68