1## @file
2# Serial driver for standard UARTS on an ISA bus.
3#
4# Produces the Serial I/O protocol for standard UARTS using ISA I/O. This driver
5# supports the 8250, 16450, 16550 and 16550A UART types.
6#
7# Copyright (c) 2007 - 2015, Intel Corporation. All rights reserved.<BR>
8#
9# This program and the accompanying materials
10# are licensed and made available under the terms and conditions of the BSD License
11# which accompanies this distribution. The full text of the license may be found at
12# http://opensource.org/licenses/bsd-license.php
13#
14# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
15# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
16#
17##
18
19[Defines]
20  INF_VERSION                    = 0x00010005
21  BASE_NAME                      = IsaSerialDxe
22  MODULE_UNI_FILE                = IsaSerialDxe.uni
23  FILE_GUID                      = 93B80003-9FB3-11d4-9A3A-0090273FC14D
24  MODULE_TYPE                    = UEFI_DRIVER
25  VERSION_STRING                 = 1.0
26  ENTRY_POINT                    = InitializeIsaSerial
27
28#
29# The following information is for reference only and not required by the build tools.
30#
31#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC
32#
33#  DRIVER_BINDING                =  gSerialControllerDriver
34#  COMPONENT_NAME                =  gIsaSerialComponentName
35#  COMPONENT_NAME2               =  gIsaSerialComponentName2
36#
37
38[Sources]
39  ComponentName.c
40  Serial.h
41  Serial.c
42
43[Packages]
44  MdePkg/MdePkg.dec
45  MdeModulePkg/MdeModulePkg.dec
46  IntelFrameworkPkg/IntelFrameworkPkg.dec
47  IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
48
49[LibraryClasses]
50  PcdLib
51  ReportStatusCodeLib
52  UefiBootServicesTableLib
53  MemoryAllocationLib
54  BaseMemoryLib
55  DevicePathLib
56  UefiLib
57  UefiDriverEntryPoint
58  DebugLib
59
60[Guids]
61  gEfiUartDevicePathGuid                        ## SOMETIMES_CONSUMES   ## GUID
62
63[Protocols]
64  gEfiIsaIoProtocolGuid                         ## TO_START
65  gEfiDevicePathProtocolGuid                    ## TO_START
66  gEfiSerialIoProtocolGuid                      ## BY_START
67  gEfiDevicePathProtocolGuid                    ## BY_START
68
69[FeaturePcd]
70  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdIsaBusSerialUseHalfHandshake|FALSE   ## CONSUMES
71
72[Pcd]
73  gEfiMdePkgTokenSpaceGuid.PcdUartDefaultBaudRate|115200    ## CONSUMES
74  gEfiMdePkgTokenSpaceGuid.PcdUartDefaultDataBits|8         ## CONSUMES
75  gEfiMdePkgTokenSpaceGuid.PcdUartDefaultParity|1           ## CONSUMES
76  gEfiMdePkgTokenSpaceGuid.PcdUartDefaultStopBits|1         ## CONSUMES
77  gEfiMdeModulePkgTokenSpaceGuid.PcdSerialClockRate|1843200 ## CONSUMES
78
79[UserExtensions.TianoCore."ExtraFiles"]
80  IsaSerialDxeExtra.uni
81