]> git.proxmox.com Git - mirror_edk2.git/blob - Nt32Pkg/WinNtSerialIoDxe/WinNtSerialIoDxe.inf
Nt32Pkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / Nt32Pkg / WinNtSerialIoDxe / WinNtSerialIoDxe.inf
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 # SPDX-License-Identifier: BSD-2-Clause-Patent
9 #
10 #
11 ##
12
13 [Defines]
14 INF_VERSION = 0x00010005
15 BASE_NAME = WinNtSerialIoDxe
16 FILE_GUID = 6B41B553-A649-11d4-BD02-0080C73C8881
17 MODULE_TYPE = UEFI_DRIVER
18 VERSION_STRING = 1.0
19 ENTRY_POINT = InitializeWinNtSerialIo
20
21 #
22 # The following information is for reference only and not required by the build tools.
23 #
24 # VALID_ARCHITECTURES = IA32
25 #
26 # DRIVER_BINDING = gWinNtSerialIoDriverBinding
27 # COMPONENT_NAME = gWinNtSerialIoComponentName
28 #
29
30 [Sources]
31 ComponentName.c
32 WinNtSerialIo.c
33 WinNtSerialIo.h
34
35 [Packages]
36 MdePkg/MdePkg.dec
37 Nt32Pkg/Nt32Pkg.dec
38
39 [LibraryClasses]
40 MemoryAllocationLib
41 DevicePathLib
42 UefiBootServicesTableLib
43 BaseMemoryLib
44 UefiLib
45 UefiDriverEntryPoint
46 BaseLib
47 DebugLib
48
49 [Guids]
50 gEfiWinNtSerialPortGuid # ALWAYS_CONSUMED
51 gEfiUartDevicePathGuid
52
53 [Protocols]
54 gEfiSerialIoProtocolGuid # PROTOCOL BY_START
55 gEfiDevicePathProtocolGuid # PROTOCOL TO_START
56 gEfiWinNtIoProtocolGuid # PROTOCOL TO_START
57
58 [Pcd]
59 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultBaudRate|115200
60 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultDataBits|8
61 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultParity|1
62 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultStopBits|1
63