1 ## @file 2 # Serial I/O driver 3 # 4 # Our DriverBinding member functions operate on the handles 5 # created by the NT Bus drive 6 # Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR> 7 # 8 # This program and the accompanying materials 9 # are licensed and made available under the terms and conditions of the BSD License 10 # which accompanies this distribution. The full text of the license may be found at 11 # http://opensource.org/licenses/bsd-license.php 12 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 13 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 14 # 15 # 16 ## 17 18 [Defines] 19 INF_VERSION = 0x00010005 20 BASE_NAME = WinNtSerialIoDxe 21 FILE_GUID = 6B41B553-A649-11d4-BD02-0080C73C8881 22 MODULE_TYPE = UEFI_DRIVER 23 VERSION_STRING = 1.0 24 ENTRY_POINT = InitializeWinNtSerialIo 25 26 # 27 # The following information is for reference only and not required by the build tools. 28 # 29 # VALID_ARCHITECTURES = IA32 30 # 31 # DRIVER_BINDING = gWinNtSerialIoDriverBinding 32 # COMPONENT_NAME = gWinNtSerialIoComponentName 33 # 34 35 [Sources] 36 ComponentName.c 37 WinNtSerialIo.c 38 WinNtSerialIo.h 39 40 [Packages] 41 MdePkg/MdePkg.dec 42 Nt32Pkg/Nt32Pkg.dec 43 44 [LibraryClasses] 45 MemoryAllocationLib 46 DevicePathLib 47 UefiBootServicesTableLib 48 BaseMemoryLib 49 UefiLib 50 UefiDriverEntryPoint 51 BaseLib 52 DebugLib 53 54 [Guids] 55 gEfiWinNtSerialPortGuid # ALWAYS_CONSUMED 56 gEfiUartDevicePathGuid 57 58 [Protocols] 59 gEfiSerialIoProtocolGuid # PROTOCOL BY_START 60 gEfiDevicePathProtocolGuid # PROTOCOL TO_START 61 gEfiWinNtIoProtocolGuid # PROTOCOL TO_START 62 63 [Pcd] 64 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultBaudRate|115200 65 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultDataBits|8 66 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultParity|1 67 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultStopBits|1 68 69