1 ## @file 2 # This driver produces Debug Port protocol to be used by debug agent to communicate with the remote debug host. 3 # 4 # This driver binds exclusively to a standard UART serial port on the controller handle, 5 # and initializes serial Io interface, publishs Debug Port and Device Path Protocol. 6 # 7 # Copyright (c) 2006 - 2014, 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 MODULE_UNI_FILE = DebugPortDxe.uni 23 FILE_GUID = 73E9457A-CEA1-4917-9A9C-9F1F0F0FD322 24 MODULE_TYPE = UEFI_DRIVER 25 VERSION_STRING = 1.0 26 ENTRY_POINT = InitializeDebugPortDriver 27 UNLOAD_IMAGE = ImageUnloadHandler 28 29 # 30 # The following information is for reference only and not required by the build tools. 31 # 32 # VALID_ARCHITECTURES = IA32 X64 IPF EBC 33 # 34 # DRIVER_BINDING = gDebugPortDriverBinding 35 # COMPONENT_NAME = gDebugPortComponentName 36 # COMPONENT_NAME2 = gDebugPortComponentName2 37 # Variable Guid C Name: gEfiDebugPortProtocolGuid Variable Name: L"DEBUGPORT" 38 # 39 # 40 41 [Sources] 42 ComponentName.c 43 DebugPort.c 44 DebugPort.h 45 46 47 [Packages] 48 MdePkg/MdePkg.dec 49 50 51 [LibraryClasses] 52 DevicePathLib 53 UefiRuntimeServicesTableLib 54 UefiBootServicesTableLib 55 MemoryAllocationLib 56 BaseMemoryLib 57 UefiLib 58 UefiDriverEntryPoint 59 DebugLib 60 61 [Guids] 62 gEfiDebugPortVariableGuid ## SOMETIMES_CONSUMES ## Variable:L"DEBUGPORT" 63 gEfiDebugPortDevicePathGuid ## SOMETIMES_CONSUMES ## UNDEFINED # Device path 64 65 [Protocols] 66 gEfiSerialIoProtocolGuid ## TO_START 67 gEfiDevicePathProtocolGuid ## BY_START 68 gEfiDebugPortProtocolGuid ## BY_START 69 70 [UserExtensions.TianoCore."ExtraFiles"] 71 DebugPortDxeExtra.uni 72