WinNtSerialIoDxe.inf revision f7c58a94cf72eb00f0931c89d935a164abaadf50
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
7#
8#  All rights reserved. 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
57[Protocols]
58  gEfiSerialIoProtocolGuid                      # PROTOCOL BY_START
59  gEfiDevicePathProtocolGuid                    # PROTOCOL TO_START
60  gEfiWinNtIoProtocolGuid                       # PROTOCOL TO_START
61
62[Pcd]
63  gEfiMdePkgTokenSpaceGuid.PcdUartDefaultBaudRate|115200
64  gEfiMdePkgTokenSpaceGuid.PcdUartDefaultDataBits|8
65  gEfiMdePkgTokenSpaceGuid.PcdUartDefaultParity|1
66  gEfiMdePkgTokenSpaceGuid.PcdUartDefaultStopBits|1
67
68