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