1 ## @file 2 # Serial driver that layers on top of a Serial Port Library instance. 3 # 4 # Copyright (c) 2008 - 2015, Intel Corporation. All rights reserved.<BR> 5 # This program and the accompanying materials 6 # are licensed and made available under the terms and conditions of the BSD License 7 # which accompanies this distribution. The full text of the license may be found at 8 # http://opensource.org/licenses/bsd-license.php 9 # 10 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 12 # 13 # 14 ## 15 16 [Defines] 17 INF_VERSION = 0x00010005 18 BASE_NAME = SerialDxe 19 MODULE_UNI_FILE = SerialDxe.uni 20 FILE_GUID = D3987D4B-971A-435F-8CAF-4967EB627241 21 MODULE_TYPE = DXE_DRIVER 22 VERSION_STRING = 1.0 23 24 ENTRY_POINT = SerialDxeInitialize 25 26 [Sources.common] 27 SerialIo.c 28 29 [Packages] 30 MdePkg/MdePkg.dec 31 32 [LibraryClasses] 33 UefiDriverEntryPoint 34 UefiBootServicesTableLib 35 DebugLib 36 PcdLib 37 SerialPortLib 38 39 [Protocols] 40 gEfiSerialIoProtocolGuid ## PRODUCES 41 gEfiDevicePathProtocolGuid ## PRODUCES 42 43 [Pcd] 44 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultBaudRate ## CONSUMES 45 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultDataBits ## CONSUMES 46 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultParity ## CONSUMES 47 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultStopBits ## CONSUMES 48 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultReceiveFifoDepth ## CONSUMES 49 50 [Depex] 51 TRUE 52 53 [UserExtensions.TianoCore."ExtraFiles"] 54 SerialDxeExtra.uni 55