]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - Nt32Pkg/WinNtSerialIoDxe/WinNtSerialIoDxe.inf
Added support for UART and Terminal PCD settings
[mirror_edk2.git] / Nt32Pkg / WinNtSerialIoDxe / WinNtSerialIoDxe.inf
... / ...
CommitLineData
1#/** @file\r
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
6# Copyright (c) 2006 - 2007, Intel Corporation\r
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
16#**/\r
17\r
18[Defines]\r
19 INF_VERSION = 0x00010005\r
20 BASE_NAME = WinNtSerialIoDxe\r
21 FILE_GUID = 6B41B553-A649-11d4-BD02-0080C73C8881\r
22 MODULE_TYPE = UEFI_DRIVER\r
23 VERSION_STRING = 1.0\r
24 EDK_RELEASE_VERSION = 0x00020000\r
25 EFI_SPECIFICATION_VERSION = 0x00020000\r
26\r
27 ENTRY_POINT = InitializeWinNtSerialIo\r
28\r
29#\r
30# The following information is for reference only and not required by the build tools.\r
31#\r
32# VALID_ARCHITECTURES = IA32\r
33#\r
34# DRIVER_BINDING = gWinNtSerialIoDriverBinding \r
35# COMPONENT_NAME = gWinNtSerialIoComponentName \r
36#\r
37\r
38[Sources.common]\r
39 ComponentName.c\r
40 WinNtSerialIo.c\r
41 WinNtSerialIo.h\r
42\r
43\r
44[Packages]\r
45 MdePkg/MdePkg.dec\r
46 Nt32Pkg/Nt32Pkg.dec\r
47\r
48\r
49[LibraryClasses]\r
50 MemoryAllocationLib\r
51 DevicePathLib\r
52 UefiBootServicesTableLib\r
53 BaseMemoryLib\r
54 UefiLib\r
55 UefiDriverEntryPoint\r
56 BaseLib\r
57 DebugLib\r
58\r
59\r
60[Guids]\r
61 gEfiWinNtSerialPortGuid # ALWAYS_CONSUMED\r
62\r
63\r
64[Protocols]\r
65 gEfiSerialIoProtocolGuid # PROTOCOL BY_START\r
66 gEfiDevicePathProtocolGuid # PROTOCOL TO_START\r
67 gEfiWinNtIoProtocolGuid # PROTOCOL TO_START\r
68\r
69[PcdsFixedAtBuild.common]\r
70 PcdUartDefaultBaudRate|gEfiMdePkgTokenSpaceGuid|115200\r
71 PcdUartDefaultDataBits|gEfiMdePkgTokenSpaceGuid|8\r
72 PcdUartDefaultParity|gEfiMdePkgTokenSpaceGuid|1\r
73 PcdUartDefaultStopBits|gEfiMdePkgTokenSpaceGuid|1\r
74\r