• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1## @file
2# Serial driver for standard UARTS on a SIO chip or PCI/PCIE card.
3#
4# Produces the Serial I/O protocol for standard UARTS using Super I/O or PCI I/O.
5#
6# Copyright (c) 2007 - 2015, Intel Corporation. All rights reserved.<BR>
7#
8# 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#
13# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
14# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15#
16##
17
18[Defines]
19  INF_VERSION                    = 0x00010005
20  BASE_NAME                      = PciSioSerialDxe
21  MODULE_UNI_FILE                = PciSioSerialDxe.uni
22  FILE_GUID                      = E2775B47-D453-4EE3-ADA7-391A1B05AC17
23  MODULE_TYPE                    = UEFI_DRIVER
24  VERSION_STRING                 = 1.0
25  ENTRY_POINT                    = InitializePciSioSerial
26
27#
28# The following information is for reference only and not required by the build tools.
29#
30#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC
31#
32#  DRIVER_BINDING                =  gSerialControllerDriver
33#  COMPONENT_NAME                =  gPciSioSerialComponentName
34#  COMPONENT_NAME2               =  gPciSioSerialComponentName2
35#
36
37[Sources]
38  ComponentName.c
39  SerialIo.c
40  Serial.h
41  Serial.c
42
43[Packages]
44  MdePkg/MdePkg.dec
45  MdeModulePkg/MdeModulePkg.dec
46
47[LibraryClasses]
48  PcdLib
49  ReportStatusCodeLib
50  UefiBootServicesTableLib
51  MemoryAllocationLib
52  BaseMemoryLib
53  DevicePathLib
54  UefiLib
55  UefiDriverEntryPoint
56  DebugLib
57  IoLib
58
59[Guids]
60  gEfiUartDevicePathGuid                        ## SOMETIMES_CONSUMES   ## GUID
61
62[Protocols]
63  gEfiSioProtocolGuid                           ## TO_START
64  gEfiDevicePathProtocolGuid                    ## TO_START
65  gEfiPciIoProtocolGuid                         ## TO_START
66  gEfiSerialIoProtocolGuid                      ## BY_START
67  gEfiDevicePathProtocolGuid                    ## BY_START
68
69[FeaturePcd]
70  gEfiMdeModulePkgTokenSpaceGuid.PcdSerialUseHalfHandshake|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  gEfiMdeModulePkgTokenSpaceGuid.PcdPciSerialParameters     ## CONSUMES
79
80[UserExtensions.TianoCore."ExtraFiles"]
81  PciSioSerialDxeExtra.uni
82