]> git.proxmox.com Git - mirror_edk2.git/blame - IntelFrameworkModulePkg/Bus/Isa/IsaSerialDxe/IsaSerialDxe.inf
Remove unnecessary use of FixedPcdxxx() functions and [FixedPcd] INF sections. These...
[mirror_edk2.git] / IntelFrameworkModulePkg / Bus / Isa / IsaSerialDxe / IsaSerialDxe.inf
CommitLineData
637ff819 1#/** @file\r
637ff819 2# Serial driver for standard UARTS on an ISA bus.\r
91c68197 3#\r
c37f052f 4# Copyright (c) 2007 - 2010, Intel Corporation\r
637ff819 5#\r
f8cd287b 6# All rights reserved. This program and the accompanying materials\r
7# are licensed and made available under the terms and conditions of the BSD License\r
8# which accompanies this distribution. The full text of the license may be found at\r
9# http://opensource.org/licenses/bsd-license.php\r
637ff819 10#\r
f8cd287b 11# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
637ff819 13#\r
14#**/\r
15\r
637ff819 16[Defines]\r
17 INF_VERSION = 0x00010005\r
c21fc3e8 18 BASE_NAME = IsaSerialDxe\r
637ff819 19 FILE_GUID = 93B80003-9FB3-11d4-9A3A-0090273FC14D\r
1a8802f7 20 MODULE_TYPE = UEFI_DRIVER\r
637ff819 21 VERSION_STRING = 1.0\r
637ff819 22 ENTRY_POINT = InitializeIsaSerial\r
23\r
24#\r
25# The following information is for reference only and not required by the build tools.\r
26#\r
27# VALID_ARCHITECTURES = IA32 X64 IPF EBC\r
28#\r
29# DRIVER_BINDING = gSerialControllerDriver \r
30# COMPONENT_NAME = gIsaSerialComponentName \r
170e7ffd 31# COMPONENT_NAME2 = gIsaSerialComponentName2\r
637ff819 32#\r
33\r
c37f052f 34[Sources]\r
637ff819 35 ComponentName.c\r
d63e4c23 36 Serial.h\r
37 Serial.c\r
637ff819 38\r
637ff819 39[Packages]\r
40 MdePkg/MdePkg.dec\r
637ff819 41 IntelFrameworkPkg/IntelFrameworkPkg.dec\r
888b8afb 42 IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec\r
637ff819 43\r
637ff819 44[LibraryClasses]\r
45 PcdLib\r
46 ReportStatusCodeLib\r
47 UefiBootServicesTableLib\r
48 MemoryAllocationLib\r
49 BaseMemoryLib\r
50 DevicePathLib\r
51 UefiLib\r
637ff819 52 UefiDriverEntryPoint\r
53 DebugLib\r
54\r
637ff819 55[Protocols]\r
91c68197
LG
56 gEfiIsaIoProtocolGuid ## TO_START\r
57 gEfiDevicePathProtocolGuid ## TO_START\r
58 gEfiSerialIoProtocolGuid ## BY_START\r
637ff819 59\r
c37f052f 60[FeaturePcd]\r
61 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdIsaBusSerialUseHalfHandshake|FALSE\r
62 \r
63[FixedPcd]\r
b3af5df6 64 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultBaudRate|115200\r
65 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultDataBits|8\r
66 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultParity|1\r
67 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultStopBits|1\r
77b91d89 68\r