2010-02-24 01:21:16 +01:00
|
|
|
## @file
|
2007-07-10 11:38:02 +02:00
|
|
|
# Serial driver for standard UARTS on an ISA bus.
|
2009-06-26 10:39:21 +02:00
|
|
|
#
|
2010-04-23 18:28:26 +02:00
|
|
|
# Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.<BR>
|
2007-07-10 11:38:02 +02:00
|
|
|
#
|
2010-04-23 18:28:26 +02:00
|
|
|
# This program and the accompanying materials
|
2007-07-20 11:34:04 +02:00
|
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
# which accompanies this distribution. The full text of the license may be found at
|
|
|
|
# http://opensource.org/licenses/bsd-license.php
|
2007-07-10 11:38:02 +02:00
|
|
|
#
|
2007-07-20 11:34:04 +02:00
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2007-07-10 11:38:02 +02:00
|
|
|
#
|
2010-02-24 01:21:16 +01:00
|
|
|
##
|
2007-07-10 11:38:02 +02:00
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
2007-07-19 09:57:59 +02:00
|
|
|
BASE_NAME = IsaSerialDxe
|
2007-07-10 11:38:02 +02:00
|
|
|
FILE_GUID = 93B80003-9FB3-11d4-9A3A-0090273FC14D
|
2008-08-20 12:00:50 +02:00
|
|
|
MODULE_TYPE = UEFI_DRIVER
|
2007-07-10 11:38:02 +02:00
|
|
|
VERSION_STRING = 1.0
|
|
|
|
ENTRY_POINT = InitializeIsaSerial
|
|
|
|
|
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
|
|
|
# VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
|
|
|
#
|
|
|
|
# DRIVER_BINDING = gSerialControllerDriver
|
|
|
|
# COMPONENT_NAME = gIsaSerialComponentName
|
2009-04-24 07:05:15 +02:00
|
|
|
# COMPONENT_NAME2 = gIsaSerialComponentName2
|
2007-07-10 11:38:02 +02:00
|
|
|
#
|
|
|
|
|
2010-01-30 00:34:42 +01:00
|
|
|
[Sources]
|
2007-07-10 11:38:02 +02:00
|
|
|
ComponentName.c
|
2008-03-18 18:21:58 +01:00
|
|
|
Serial.h
|
|
|
|
Serial.c
|
2007-07-10 11:38:02 +02:00
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
IntelFrameworkPkg/IntelFrameworkPkg.dec
|
2007-08-31 05:02:29 +02:00
|
|
|
IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
|
2007-07-10 11:38:02 +02:00
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
PcdLib
|
|
|
|
ReportStatusCodeLib
|
|
|
|
UefiBootServicesTableLib
|
|
|
|
MemoryAllocationLib
|
|
|
|
BaseMemoryLib
|
|
|
|
DevicePathLib
|
|
|
|
UefiLib
|
|
|
|
UefiDriverEntryPoint
|
|
|
|
DebugLib
|
|
|
|
|
2010-04-09 10:35:44 +02:00
|
|
|
[Guids]
|
|
|
|
gEfiUartDevicePathGuid
|
|
|
|
|
2007-07-10 11:38:02 +02:00
|
|
|
[Protocols]
|
2009-06-26 10:39:21 +02:00
|
|
|
gEfiIsaIoProtocolGuid ## TO_START
|
|
|
|
gEfiDevicePathProtocolGuid ## TO_START
|
|
|
|
gEfiSerialIoProtocolGuid ## BY_START
|
2007-07-10 11:38:02 +02:00
|
|
|
|
2010-01-30 00:34:42 +01:00
|
|
|
[FeaturePcd]
|
|
|
|
gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdIsaBusSerialUseHalfHandshake|FALSE
|
|
|
|
|
|
|
|
[FixedPcd]
|
2007-08-30 11:11:54 +02:00
|
|
|
gEfiMdePkgTokenSpaceGuid.PcdUartDefaultBaudRate|115200
|
|
|
|
gEfiMdePkgTokenSpaceGuid.PcdUartDefaultDataBits|8
|
|
|
|
gEfiMdePkgTokenSpaceGuid.PcdUartDefaultParity|1
|
|
|
|
gEfiMdePkgTokenSpaceGuid.PcdUartDefaultStopBits|1
|
2009-07-10 09:55:14 +02:00
|
|
|
|